diff options
author | Ken Raeburn <raeburn@cygnus> | 1994-02-16 01:28:59 +0000 |
---|---|---|
committer | Ken Raeburn <raeburn@cygnus> | 1994-02-16 01:28:59 +0000 |
commit | c25be7f4e9745fabccf8fdc542d37290bb52ead2 (patch) | |
tree | aced0afd24c16c307f491e234682908d7884e5e9 /gas | |
parent | 7ff6f2daf55c1f343e6de9061956c954f00d97e2 (diff) | |
download | fsf-binutils-gdb-c25be7f4e9745fabccf8fdc542d37290bb52ead2.zip fsf-binutils-gdb-c25be7f4e9745fabccf8fdc542d37290bb52ead2.tar.gz fsf-binutils-gdb-c25be7f4e9745fabccf8fdc542d37290bb52ead2.tar.bz2 |
* configure.in: Support i960-vxworks versions > 5.0 as coff.
Default is still bout if no version is specified.
Diffstat (limited to 'gas')
-rw-r--r-- | gas/ChangeLog | 5 | ||||
-rw-r--r-- | gas/configure.in | 12 |
2 files changed, 14 insertions, 3 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index b9662ad..229977b 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,8 @@ +Tue Feb 15 20:23:20 1994 Ken Raeburn (raeburn@cujo.cygnus.com) + + * configure.in: Support i960-vxworks versions > 5.0 as coff. + Default is still bout if no version is specified. + Fri Feb 11 13:13:27 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com) * config/tc-mips.c (macro): Do unaligned loads and stores diff --git a/gas/configure.in b/gas/configure.in index e0ad71d..37ff4cd 100644 --- a/gas/configure.in +++ b/gas/configure.in @@ -129,9 +129,11 @@ case ${generic_target} in a29k-amd-ebmon) obj_format=coffbfd gas_target=ebmon29k ;; a29k-amd-ebmonold) obj_format=coff gas_target=ebmon29k ;; + alpha-*-netware*) obj_format=ecoff ;; alpha-*-osf*) obj_format=ecoff ;; - hppa-*-osf) obj_format=elf emulation=hppa ;; + hppa-*-*elf*) obj_format=elf emulation=hppa ;; + hppa-*-osf*) obj_format=som emulation=hppa ;; hppa-*-hpux*) obj_format=som emulation=hppa ;; hppa-*-bsd*) obj_format=som emulation=hppa ;; hppa-*-hiux*) obj_format=som emulation=hppa ;; @@ -156,9 +158,13 @@ case ${generic_target} in i386-*-vsta) obj_format=aout ;; i386-*-go32) obj_format=aout ;; - i960-wrs-vxworks | i960-*-nindy*) - obj_format=bout ;; + i960-*-bout) obj_format=bout ;; i960-*-coff) obj_format=coff emulation=ic960 ;; + i960-*-nindy*) obj_format=bout ;; + i960-*-vxworks4*) obj_format=bout ;; + i960-*-vxworks5.0) obj_format=bout ;; + i960-*-vxworks5.*) obj_format=coff emulation=ic960 ;; + i960-*-vxworks*) obj_format=bout ;; m68k-wrs-vxworks | m68k-ericsson-ose | m68k-*-sunos*) obj_format=aout emulation=sun3 ;; |