diff options
author | Stan Cox <scox@redhat.com> | 2003-01-03 21:47:21 +0000 |
---|---|---|
committer | Stan Cox <scox@redhat.com> | 2003-01-03 21:47:21 +0000 |
commit | 1c53c80da36a183743c715a540032ef048d865e4 (patch) | |
tree | e36af2e6c7a96e82b4a6c6c45f3c2af53bf41838 /gas/configure | |
parent | a99bcdd0d53e7959bbbc3e574f957f324ac6a23a (diff) | |
download | gdb-1c53c80da36a183743c715a540032ef048d865e4.zip gdb-1c53c80da36a183743c715a540032ef048d865e4.tar.gz gdb-1c53c80da36a183743c715a540032ef048d865e4.tar.bz2 |
* configure.in: Add iq2000-elf target.
* configure: Regenerate.
* config/tc-iq2000.c: New file.
* config/tc-iq2000.h: Likewise.
Diffstat (limited to 'gas/configure')
-rwxr-xr-x | gas/configure | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gas/configure b/gas/configure index baf92b3..88f9ecc 100755 --- a/gas/configure +++ b/gas/configure @@ -2274,6 +2274,7 @@ for this_target in $target $canon_targets ; do x86_64) cpu_type=i386 arch=x86_64;; ia64) cpu_type=ia64 ;; ip2k) cpu_type=ip2k endian=big ;; + iq2000) cpu_type=iq2000 endian=big ;; m6811|m6812|m68hc12) cpu_type=m68hc11 ;; m680[012346]0) cpu_type=m68k ;; m68008) cpu_type=m68k ;; @@ -2469,6 +2470,8 @@ EOF ip2k-*-*) fmt=elf ;; + iq2000-*-elf) fmt=elf bfd_gas=yes ;; + m32r-*-*) fmt=elf ;; m68hc11-*-* | m6811-*-*) fmt=elf ;; @@ -2757,7 +2760,7 @@ EOF # Any other special object files needed ? case ${cpu_type} in - fr30 | ip2k | m32r | openrisc) + fr30 | ip2k | iq2000 | m32r | openrisc) using_cgen=yes ;; |