diff options
author | Richard Sandiford <rdsandiford@googlemail.com> | 2009-03-14 09:11:38 +0000 |
---|---|---|
committer | Richard Sandiford <rdsandiford@googlemail.com> | 2009-03-14 09:11:38 +0000 |
commit | e52315924b94ebfea09366bebb535692f274dc52 (patch) | |
tree | 2bca2338afffa1cee1e3ea09d0f0319f7220f16d /binutils | |
parent | fa0a16b19e6701bed945feffd3fb5381759a0005 (diff) | |
download | gdb-e52315924b94ebfea09366bebb535692f274dc52.zip gdb-e52315924b94ebfea09366bebb535692f274dc52.tar.gz gdb-e52315924b94ebfea09366bebb535692f274dc52.tar.bz2 |
bfd/
* config.bfd: Treat AIX 6+ in the same way as AIX 5.
* configure.in: Likewise.
* configure: Regenerate.
binutils/
* configure.tgt: Extend AIX 5 behavior to AIX 6 and above.
* configure.in: Likewise.
* configure: Regenerate.
gas/
* configure.tgt: Extend AIX 5 behavior to AIX 6 and above.
* configure.in: Likewise.
* configure: Regenerate.
ld/
* configure.tgt: Extend AIX 5 behavior to AIX 6 and above.
Diffstat (limited to 'binutils')
-rw-r--r-- | binutils/ChangeLog | 6 | ||||
-rwxr-xr-x | binutils/configure | 2 | ||||
-rw-r--r-- | binutils/configure.in | 4 | ||||
-rw-r--r-- | binutils/configure.tgt | 2 |
4 files changed, 11 insertions, 3 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog index 87badcd..877349b 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,9 @@ +2009-03-14 Richard Sandiford <r.sandiford@uk.ibm.com> + + * configure.tgt: Extend AIX 5 behavior to AIX 6 and above. + * configure.in: Likewise. + * configure: Regenerate. + 2009-03-13 H.J. Lu <hongjiu.lu@intel.com> PR binutils/9945 diff --git a/binutils/configure b/binutils/configure index 6914de7..431dfc8 100755 --- a/binutils/configure +++ b/binutils/configure @@ -16159,7 +16159,7 @@ do ;; powerpc*-aix5.[01]) ;; - powerpc*-aix5.*) + powerpc*-aix[5-9].*) OBJDUMP_DEFS="-DAIX_WEAK_SUPPORT" ;; powerpc*-*-pe* | powerpc*-*-cygwin*) diff --git a/binutils/configure.in b/binutils/configure.in index 8a2c345..9931eb2 100644 --- a/binutils/configure.in +++ b/binutils/configure.in @@ -330,7 +330,9 @@ changequote(,)dnl powerpc*-aix5.[01]) changequote([,])dnl ;; - powerpc*-aix5.*) +changequote(,)dnl + powerpc*-aix[5-9].*) +changequote([,])dnl OBJDUMP_DEFS="-DAIX_WEAK_SUPPORT" ;; powerpc*-*-pe* | powerpc*-*-cygwin*) diff --git a/binutils/configure.tgt b/binutils/configure.tgt index 2d5ce2b..253f731 100644 --- a/binutils/configure.tgt +++ b/binutils/configure.tgt @@ -9,7 +9,7 @@ # targ_emul_vector name of vector to use case "${targ}" in - powerpc-*-aix5* | rs6000-*-aix5*) + powerpc-*-aix[5-9]* | rs6000-*-aix[5-9]*) targ_emul=aix targ_emul_vector=bin_aix5_emulation ;; |