|
Linker, The Legend of Compilation
Ok, so you haven't modified anything you're just checking to see if it works? Are you sure the files you have are compilable all on their lonesome? It doesn't require some other sort of program to interface with it. Like if it's a class it probably (as far as I know) won't compile and do anything it needs a program with a main() function in order to have some idea what to do.
Another idea:
When the files are included (#include) are they explicitely referenced.
For instance is it like
#include <c:\program_files\c_compiler\include\file.h>
or is it
#include <file.h>
If it's like the first one you might want to check that it's looking in the right place. If its the second one you might want to check that the appropriate .h s and .cpps are in the right include directory.
|