diff options
author | Alexandre Oliva <aoliva@redhat.com> | 2001-01-18 12:25:37 +0000 |
---|---|---|
committer | Alexandre Oliva <aoliva@redhat.com> | 2001-01-18 12:25:37 +0000 |
commit | 81c425d115c748a7821724aed41fdbbc1766ef0a (patch) | |
tree | 1769459dad241bb0acea488812fcd6b128cbda19 /gas | |
parent | a5377ec02090810e36ec507ed2c4fa47e79bea4c (diff) | |
download | gdb-81c425d115c748a7821724aed41fdbbc1766ef0a.zip gdb-81c425d115c748a7821724aed41fdbbc1766ef0a.tar.gz gdb-81c425d115c748a7821724aed41fdbbc1766ef0a.tar.bz2 |
* configure.in (cpu_type, arch): Match i386 too.
* configure: Rebuilt.
Diffstat (limited to 'gas')
-rw-r--r-- | gas/ChangeLog | 5 | ||||
-rwxr-xr-x | gas/configure | 2 | ||||
-rw-r--r-- | gas/configure.in | 2 |
3 files changed, 7 insertions, 2 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index daa642e..cf497c3 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,8 @@ +2001-01-18 Alexandre Oliva <aoliva@redhat.com> + + * configure.in (cpu_type, arch): Match i386 too. + * configure: Rebuilt. + 2001-01-16 Kazu Hirata <kazu@hxi.com> * config/tc-i386.c: Fix formatting. diff --git a/gas/configure b/gas/configure index c2a1abc..a0f4dfe 100755 --- a/gas/configure +++ b/gas/configure @@ -2263,7 +2263,7 @@ for this_target in $target $canon_targets ; do strongarm*) cpu_type=arm endian=little ;; thumb*) cpu_type=arm endian=little ;; hppa*) cpu_type=hppa ;; - i[456]86) cpu_type=i386 arch=i386;; + i[3456]86) cpu_type=i386 arch=i386;; x86_64) cpu_type=i386 arch=x86_64;; ia64) cpu_type=ia64 ;; m6811|m6812|m68hc12) cpu_type=m68hc11 ;; diff --git a/gas/configure.in b/gas/configure.in index fbb3dd3..ad46b8f 100644 --- a/gas/configure.in +++ b/gas/configure.in @@ -122,7 +122,7 @@ changequote([,])dnl thumb*) cpu_type=arm endian=little ;; hppa*) cpu_type=hppa ;; changequote(,)dnl - i[456]86) cpu_type=i386 arch=i386;; + i[3456]86) cpu_type=i386 arch=i386;; x86_64) cpu_type=i386 arch=x86_64;; ia64) cpu_type=ia64 ;; m6811|m6812|m68hc12) cpu_type=m68hc11 ;; |