View Single Post
Old 02-26-2003, 04:54 PM   #7 (permalink)
saline
I am red.
 
saline's Avatar
 
Join Date: Feb 2003
Location: Cleveland, OH
Posts: 139
saline is on a distinguished road
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.
saline is offline   Reply With Quote