aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Clifton <nickc@cygnus.com>1999-08-25 10:12:07 +0000
committerNick Clifton <nickc@gcc.gnu.org>1999-08-25 10:12:07 +0000
commitaf13ebe9d8388dc733a0a3096b84159321324e7e (patch)
treed5f4fe8850ea2222628ac8e771f4e30af80d6fdd
parentc93047472689c76d58eab5404532a3acbd832677 (diff)
downloadgcc-af13ebe9d8388dc733a0a3096b84159321324e7e.zip
gcc-af13ebe9d8388dc733a0a3096b84159321324e7e.tar.gz
gcc-af13ebe9d8388dc733a0a3096b84159321324e7e.tar.bz2
Do not configure or build ld for AIX native systems.
From-SVN: r28854
-rw-r--r--ChangeLog5
-rw-r--r--configure.in14
2 files changed, 15 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index a9e6571..38b04ac 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+1999-08-25 Nick Clifton <nickc@cygnus.com>
+
+ * configure.in: Do not configure or build ld for AIX
+ platforms. ld is known to be broken on these platforms.
+
Wed Aug 25 01:12:25 1999 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
* config-ml.in: Pass compiler flag corresponding to multidirs to
diff --git a/configure.in b/configure.in
index 7265f49..1260752 100644
--- a/configure.in
+++ b/configure.in
@@ -699,8 +699,11 @@ case "${target}" in
;;
powerpc-*-aix*)
# copied from rs6000-*-* entry
- noconfigdirs="$noconfigdirs gprof cvssrc target-libgloss"
- # This is needed until gcc and ld are fixed to work together.
+ # The configure and build of ld are currently disabled because
+ # GNU ld is known to be broken for AIX 4.2 and 4.3 (at least)
+ # The symptom is that GDBtk 4.18 fails at startup with a segfault
+ # if linked by GNU ld, but not if linked by the native ld.
+ noconfigdirs="$noconfigdirs gprof cvssrc target-libgloss ld"
use_gnu_ld=no
;;
powerpc*-*-winnt* | powerpc*-*-pe* | ppc*-*-pe)
@@ -719,8 +722,11 @@ case "${target}" in
noconfigdirs="$noconfigdirs target-newlib gprof cvssrc"
;;
rs6000-*-aix*)
- noconfigdirs="$noconfigdirs gprof"
- # This is needed until gcc and ld are fixed to work together.
+ # The configure and build of ld are currently disabled because
+ # GNU ld is known to be broken for AIX 4.2 and 4.3 (at least)
+ # The symptom is that GDBtk 4.18 fails at startup with a segfault
+ # if linked by GNU ld, but not if linked by the native ld.
+ noconfigdirs="$noconfigdirs gprof ld"
use_gnu_ld=no
;;
rs6000-*-*)