This is the mail archive of the
gcc-help@gcc.gnu.org
mailing list for the GCC project.
Re: gcc include path problem?
- From: Eljay Love-Jensen <eljay at adobe dot com>
- To: vicpk4 <gavrilov_victor at mail dot ru>, GCC-help <gcc-help at gcc dot gnu dot org>
- Date: Fri, 13 Jun 2008 05:53:58 -0500
- Subject: Re: gcc include path problem?
Hi Victor,
One useful way to make sure header files are the ones expected is this
trick:
gcc -E -H foo.c -o /dev/null
To see the header search paths being used:
gcc -v -E -H foo.c -o /dev/null
HTH,
--Eljay