This is the mail archive of the
gcc-help@gcc.gnu.org
mailing list for the GCC project.
Re: Dependency output path question
- From: John Love-Jensen <eljay at adobe dot com>
- To: <morrell at alumni dot ucsd dot edu>, MSX to GCC <gcc-help at gcc dot gnu dot org>
- Date: Wed, 11 Jul 2007 06:27:22 -0500
- Subject: Re: Dependency output path question
Hi Michael,
> Why are the 2 header files treated differently in the second case?
Because in the second case, /tmp/foo1.h was found in the same location as
/tmp/foo1.c (as per the behavior of #include "").
While in the first case, foo1.h was found in the same location as foo1.c (as
per the behavior of #include "").
Which is because the two cases are being treated identically.
HTH,
--Eljay