On a Unix system, where does gcc look for header files?
I spent a little time this morning looking for some system header files, so I thought this would be good information to have here.
|
This command asks gcc which C++ preprocessor it is using, and then asks that preprocessor where it looks for includes. You will get a reliable answer for your specific setup. Likewise, for the C preprocessor:
|
|||||
|
|
The CPP Section of the GCC Manual indicates that header files may be located in the following directories:
|
|||||||||
|
|
In addition, gcc will look in the directories specified after the -I option |
|||
|
|
|
You can create a file that attempts to include a bogus system header. If you run gcc in verbose mode on such a source, it will list all the system include locations as it looks for the bogus header. $ echo "#include <bogus.h> int main(){}" > t.c; gcc -v t.c; rm t.c [..]
[..]
|
|||||||||||||
|