Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Over 90% answered within 24 hours! Click here to start participating now! Also, be sure to check out the New User Guide.
Linker Error: Undefined Symbol
Name: Kvaien Date: October 13, 2005 at 13:00:40 Pacific OS: XP CPU/Ram: 3.4/512
Comment:
I'm using Borland Turbo C++ (3.0) and it'll compile a simple hello world program, but if I try to open a program I created at school - and it worked there - it gives me Linker Error: Undefined symbol line(int int int int) as well as 7 other graphics errors (setcolor, circle, bar, etc). Compiling works fine, but running/making does not. Any detailed help would be appreciated.
Name: Fozzie Date: October 13, 2005 at 20:00:42 Pacific
Reply:
When using dos graphics functions with turbo C++, you have to have the file called egavga.bgi in the same directory as your executable. If you don't have that file then that could be the problem.
You can find a copy of the file with a quick internet search.
Summary: I'm getting a compiler error: "Undefined symbol ceil first referenced in is12hw5.c (the name of my sourcecode file) Fatal: symbol referencing errors" Here's my code: #include <stdio.h> #include <...
Summary: i have done a C program using IPX protocol. here i have declared getinterrupt(0x21); i compiled the program & I get the following linker error "Undefined symbol _getinterrupt in module " .. how to sol...
Summary: Hello again! I have 2 files, Test.c and Test2.asm. Test.c goes as follows: #include extern int Test1() { printf("Hi!\n"); return 0; } and test2.asm is as follows: EXTRN _Test1 : FAR .model small .d...