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 | |
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.
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | configure.in | 7 |
2 files changed, 11 insertions, 0 deletions
@@ -1,3 +1,7 @@ +Thu Apr 25 11:48:20 1996 Ian Lance Taylor <ian@cygnus.com> + + * configure.in: Don't configure --with-gnu-ld on AIX. + Thu Apr 25 06:33:36 1996 Michael Meissner <meissner@wogglebug.tiac.net> * configure.in (powerpcle-*-solaris*): Turn off gdb temporarily. 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" ;; |