zaqmlp
March 15th, 2002, 08:30 PM
After compiling, when I am doing the linking, the compiler conmplains that I have undefined symbols but I have included the library files, what else could I be missing?
|
Click to See Complete Forum and Search --> : linking problems zaqmlp March 15th, 2002, 08:30 PM After compiling, when I am doing the linking, the compiler conmplains that I have undefined symbols but I have included the library files, what else could I be missing? Paul McKenzie March 15th, 2002, 11:30 PM What compiler? What are the errors? You need to provide more information. Regards, Paul McKenzie cpitis March 17th, 2002, 10:27 AM First, check for the missing symbols. Then, identify the library file (or object file) where the symbols are defined. Last, include the missing library file (or object file) in the link list. I don't know what compiler you use. zaqmlp March 17th, 2002, 10:32 AM borlandc compiler cpitis March 17th, 2002, 10:33 AM Then, make sure you link all the required libraries. Usualy, this is the thing forgoten. zaqmlp March 17th, 2002, 10:40 AM But I have link the libraries but it still give me this problem, that's why I am very vexed over this problem zaqmlp March 17th, 2002, 10:46 AM How would i know if the compiler has included my libraries and objects files? popmaker March 17th, 2002, 11:57 AM if im not mistaken, you have to make a config file for borland, <something>.cfg. this file should include lines like -L<DIR> this makes a default linking to the libraries. read the readme file very thouroughly, it's all there! codeguru.com
Copyright Internet.com Inc., All Rights Reserved. |