Commit 15c758e9 by DJ Delorie Committed by DJ Delorie

configure.in (FLAGS_FOR_TARGET): invert test for xgcc...

* configure.in (FLAGS_FOR_TARGET): invert test for xgcc, should mean
"if we're also building gcc, and it's a gcc that will run on the
build machine, we want to use its includes instead of the system's
default includes".

From-SVN: r35553
parent 8e04dd30
2000-08-07 DJ Delorie <dj@redhat.com>
* configure.in (FLAGS_FOR_TARGET): invert test for xgcc, should mean
"if we're also building gcc, and it's a gcc that will run on the
build machine, we want to use its includes instead of the system's
default includes".
2000-08-04 Joseph S. Myers <jsm28@cam.ac.uk> 2000-08-04 Joseph S. Myers <jsm28@cam.ac.uk>
* MAINTAINERS: Add self to Write After Approval list. * MAINTAINERS: Add self to Write After Approval list.
......
...@@ -1252,7 +1252,7 @@ case " $skipdirs " in ...@@ -1252,7 +1252,7 @@ case " $skipdirs " in
# If we're using a pre-built compiler (which is the case for # If we're using a pre-built compiler (which is the case for
# Canadian crosses or when gcc isn't being built), don't discard # Canadian crosses or when gcc isn't being built), don't discard
# standard headers. # standard headers.
if test "${build}" = "${host}" && test ! -d ${topsrcdir}/gcc; then if test "${build}" = "${host}" && test -d ${topsrcdir}/gcc; then
FLAGS_FOR_TARGET=$FLAGS_FOR_TARGET' -nostdinc' FLAGS_FOR_TARGET=$FLAGS_FOR_TARGET' -nostdinc'
fi fi
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment