aboutsummaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>1999-08-27 10:42:58 +0000
committerNick Clifton <nickc@redhat.com>1999-08-27 10:42:58 +0000
commitceaa7778c09114eb69cb7a31c2df9e602abbb0e0 (patch)
tree430bf3dbb4e69c3678a669c62ad0cb56a995283e /configure.in
parent7a4b7442d49a7f4ac3da7fc5a1ce2f92e37e8a08 (diff)
downloadfsf-binutils-gdb-ceaa7778c09114eb69cb7a31c2df9e602abbb0e0.zip
fsf-binutils-gdb-ceaa7778c09114eb69cb7a31c2df9e602abbb0e0.tar.gz
fsf-binutils-gdb-ceaa7778c09114eb69cb7a31c2df9e602abbb0e0.tar.bz2
Do not build ld for native AIX platforms.
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in14
1 files changed, 10 insertions, 4 deletions
diff --git a/configure.in b/configure.in
index 6815d07..a9221a6 100644
--- a/configure.in
+++ b/configure.in
@@ -744,8 +744,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)
@@ -769,8 +772,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-*-*)