summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authornickc <nickc@138bc75d-0d04-0410-961f-82ee72b054a4>1999-08-25 10:12:07 +0000
committernickc <nickc@138bc75d-0d04-0410-961f-82ee72b054a4>1999-08-25 10:12:07 +0000
commit3e6b79817d06f7ad207a41a1b5050478ee69e223 (patch)
treed5f4fe8850ea2222628ac8e771f4e30af80d6fdd /configure.in
parentee7a28b2e2642ac730297ee557e956963bbc82b8 (diff)
downloadgcc-3e6b79817d06f7ad207a41a1b5050478ee69e223.tar.gz
Do not configure or build ld for AIX native systems.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@28854 138bc75d-0d04-0410-961f-82ee72b054a4
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 7265f49a87f..12607526358 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-*-*)