diff options
author | Ian Lance Taylor <ian@airs.com> | 1996-04-25 15:49:40 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1996-04-25 15:49:40 +0000 |
commit | 3d40ace08597e8c49c3da9a236e4a81cef8d8395 (patch) | |
tree | 43f06ffee947977ace2436800851df096f305e9a /configure.in | |
parent | 556829bcb9101835d10f5389ca3c4fc0b2039b58 (diff) | |
download | gdb-3d40ace08597e8c49c3da9a236e4a81cef8d8395.zip gdb-3d40ace08597e8c49c3da9a236e4a81cef8d8395.tar.gz gdb-3d40ace08597e8c49c3da9a236e4a81cef8d8395.tar.bz2 |
* configure.in: Don't configure --with-gnu-ld on AIX.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/configure.in b/configure.in index 8b863c3..4b000ee 100644 --- a/configure.in +++ b/configure.in @@ -458,6 +458,8 @@ case "${target}" in powerpc-*-aix*) # copied from rs6000-*-* entry noconfigdirs="$noconfigdirs gprof cvs target-libgloss" + # This is needed until gcc and ld are fixed to work together. + use_gnu_ld=no ;; powerpc*-*-winnt* | powerpc*-*-pe* | ppc*-*-pe) target_configdirs="$target_configdirs target-winsup" @@ -474,6 +476,11 @@ case "${target}" in # Newlib makes problems for libg++ in crosses. noconfigdirs="$noconfigdirs target-newlib gprof cvs" ;; + rs6000-*-aix*) + noconfigdirs="$noconfigdirs gprof" + # This is needed until gcc and ld are fixed to work together. + use_gnu_ld=no + ;; rs6000-*-*) noconfigdirs="$noconfigdirs gprof" ;; |