On Feb 16, 2001, "John R. Jackson" <[EMAIL PROTECTED]> wrote:

> About the only other thing I can think of is to try to get gcc to behave
> by putting another copy of /usr/include someplace else (do you have a
> good copy?) and then doing something like this:

>   gcc -nostdinc -I- -I/usr/include.good ...

Never use -I/usr/include with GCC.  Search for this string in the GCC
manual to learn why.

Use -isystem /usr/include.good instead, but always after
-isystem `gcc -print-file-name=include`

-- 
Alexandre Oliva   Enjoy Guarana', see http://www.ic.unicamp.br/~oliva/
Red Hat GCC Developer                  aoliva@{cygnus.com, redhat.com}
CS PhD student at IC-Unicamp        oliva@{lsd.ic.unicamp.br, gnu.org}
Free Software Evangelist    *Please* write to mailing lists, not to me

Reply via email to