diff options
author | Mark Kettenis <kettenis@gnu.org> | 2005-04-11 22:31:37 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@gnu.org> | 2005-04-11 22:31:37 +0000 |
commit | 333f7af7b20907c6dc4e188a7cb4d8118958a049 (patch) | |
tree | 97aa3a3c0b687506e0db1045136fc94dc0240acc /gas | |
parent | ab82c5b97fcf97e081a3ea5e2291882963fecdae (diff) | |
download | binutils-gdb-333f7af7b20907c6dc4e188a7cb4d8118958a049.tar.gz |
* configure.tgt (generic_target): Add support for OpenBSD/i386 ELF.
Diffstat (limited to 'gas')
-rw-r--r-- | gas/ChangeLog | 4 | ||||
-rw-r--r-- | gas/configure.tgt | 5 |
2 files changed, 8 insertions, 1 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index 2f5c5a1d147..48976ca0507 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,7 @@ +2005-04-11 Mark Kettenis <kettenis@gnu.org> + + * configure.tgt (generic_target): Add support for OpenBSD/i386 ELF. + 2005-04-11 Jan Beulich <jbeulich@novell.com> * NEWS: Mention these changes and their effects. diff --git a/gas/configure.tgt b/gas/configure.tgt index 9bb69298491..fec36f754fe 100644 --- a/gas/configure.tgt +++ b/gas/configure.tgt @@ -182,11 +182,14 @@ case ${generic_target} in i386-*-netbsd*-gnu* | \ i386-*-knetbsd*-gnu | \ i386-*-netbsdelf*) fmt=elf em=nbsd ;; - i386-*-*n*bsd*) + i386-*-netbsd*) case ${cpu} in x86_64) fmt=elf em=nbsd ;; *) fmt=aout em=nbsd ;; esac ;; + i386-*-openbsd[0-2].* | \ + i386-*-openbsd3.[0-2]) fmt=aout em=nbsd ;; + i386-*-openbsd*) fmt=elf em=nbsd ;; i386-*-linux*aout*) fmt=aout em=linux ;; i386-*-linux*oldld) fmt=aout em=linux ;; i386-*-linux*coff*) fmt=coff em=linux ;; |