diff options
author | Alexandre Oliva <aoliva@redhat.com> | 2000-09-02 07:24:51 +0000 |
---|---|---|
committer | Alexandre Oliva <aoliva@redhat.com> | 2000-09-02 07:24:51 +0000 |
commit | 7450026cd9c5c3fe6380a337421c70ac94bb2ffb (patch) | |
tree | 55adf06fdd29dccd52c5e4375fc4e6d556cb3bc4 /configure.in | |
parent | a1cc9221e2f5771188b5832633eb73ee2bbbb4c5 (diff) | |
download | fsf-binutils-gdb-7450026cd9c5c3fe6380a337421c70ac94bb2ffb.zip fsf-binutils-gdb-7450026cd9c5c3fe6380a337421c70ac94bb2ffb.tar.gz fsf-binutils-gdb-7450026cd9c5c3fe6380a337421c70ac94bb2ffb.tar.bz2 |
* configure.in (FLAGS_FOR_TARGET): Use -nostdinc even for Canadian
crosses, but add gcc/include to the header search path for them.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 24 |
1 files changed, 20 insertions, 4 deletions
diff --git a/configure.in b/configure.in index 9af1fd1..8daa3f3 100644 --- a/configure.in +++ b/configure.in @@ -1233,11 +1233,27 @@ case " $skipdirs " in FLAGS_FOR_TARGET=$FLAGS_FOR_TARGET' -L$$r/$(TARGET_SUBDIR)/winsup -L$$r/$(TARGET_SUBDIR)/winsup/cygwin -L$$r/$(TARGET_SUBDIR)/winsup/w32api/lib -isystem $$s/winsup/include -isystem $$s/winsup/cygwin/include -isystem $$s/winsup/w32api/include -isystem $$s/newlib/libc/sys/cygwin -isystem $$s/newlib/libc/sys/cygwin32' ;; esac - # 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 - # standard headers. - if test "${build}" = "${host}" && test -d ${topsrcdir}/gcc; then + # If we're not building GCC, don't discard standard headers. + if test -d ${topsrcdir}/gcc; then FLAGS_FOR_TARGET=$FLAGS_FOR_TARGET' -nostdinc' + + if test "${build}" != "${host}"; then + # On Canadian crosses, CC_FOR_TARGET will have already been set + # by `configure', so we won't have an opportunity to add -Bgcc/ + # to it. This is right: we don't want to search that directory + # for binaries, but we want the header files in there, so add + # them explicitly. + FLAGS_FOR_TARGET=$FLAGS_FOR_TARGET' -isystem $$r/gcc/include' + + # Someone might think of using the pre-installed headers on + # Canadian crosses, in case the installed compiler is not fully + # compatible with the compiler being built. In this case, it + # would be better to flag an error than risking having + # incompatible object files being constructed. We can't + # guarantee that an error will be flagged, but let's hope the + # compiler will do it, when presented with incompatible header + # files. + fi fi # If we're building newlib, use its generic headers last, but search |