"H.J. Lu" <hjl.to...@gmail.com> writes:

> Say I have
>
> #include "Foo/Foo.h"
>
> I want to map it to foo/foo.h on disk. Can I map Foo to foo with
> header.gcc in directory, foo?

Yes.  Put this at top level (i.e., in the same directory where the
directory "foo" is):

Foo/Foo.h foo/foo.h

Then #include "Foo/Foo.h" will open foo/foo.h.

You do have to compile with the -remap option.

Ian

Reply via email to