aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexandre Oliva <aoliva@redhat.com>2000-09-02 07:18:09 +0000
committerAlexandre Oliva <aoliva@gcc.gnu.org>2000-09-02 07:18:09 +0000
commitafd7db2554863507f6ec6ac628e9809cfa1ffbf7 (patch)
tree7bffa7150cebc6de50038272a69545c8bf311c7c
parent802a8181851e4848f740686e8f10ca4b7aa4e39a (diff)
downloadgcc-afd7db2554863507f6ec6ac628e9809cfa1ffbf7.zip
gcc-afd7db2554863507f6ec6ac628e9809cfa1ffbf7.tar.gz
gcc-afd7db2554863507f6ec6ac628e9809cfa1ffbf7.tar.bz2
configure.in (FLAGS_FOR_TARGET): Use -nostdinc even for Canadian crosses...
* configure.in (FLAGS_FOR_TARGET): Use -nostdinc even for Canadian crosses, but add gcc/include to the header search path for them. From-SVN: r36113
-rw-r--r--ChangeLog5
-rw-r--r--configure.in24
2 files changed, 25 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index b0b5f7e..d92b258 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2000-08-30 Alexandre Oliva <aoliva@redhat.com>, DJ Delorie <dj@redhat.com>
+
+ * configure.in (FLAGS_FOR_TARGET): Use -nostdinc even for Canadian
+ crosses, but add gcc/include to the header search path for them.
+
2000-08-04 David E. O'Brien <obrien@FreeBSD.org>
* MAINTAINERS: Add self to Write After Approval list.
diff --git a/configure.in b/configure.in
index 55b853c..87e8a2a 100644
--- a/configure.in
+++ b/configure.in
@@ -1244,11 +1244,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