diff options
author | Andrew Cagney <cagney@redhat.com> | 1997-11-13 22:21:36 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 1997-11-13 22:21:36 +0000 |
commit | 15ddb4c9adfa250e06f79d6d465ccdb2f50be49b (patch) | |
tree | 82bbc432c176f3ca692bebb9ae72bf19ba07fac3 /gas | |
parent | 9e8a900adf4d6e4845dc763407af7a142bed9424 (diff) | |
download | gdb-15ddb4c9adfa250e06f79d6d465ccdb2f50be49b.zip gdb-15ddb4c9adfa250e06f79d6d465ccdb2f50be49b.tar.gz gdb-15ddb4c9adfa250e06f79d6d465ccdb2f50be49b.tar.bz2 |
Add FreeBSD/aout target confiiguration. Make it a 386BSD clone.
Diffstat (limited to 'gas')
-rw-r--r-- | gas/configure.in | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gas/configure.in b/gas/configure.in index 34bf5f9..8879762 100644 --- a/gas/configure.in +++ b/gas/configure.in @@ -161,8 +161,10 @@ changequote([,])dnl i386-*-linux*coff*) fmt=coff em=linux ;; i386-*-linux*) fmt=elf em=linux ;; i386-*-lynxos*) fmt=coff em=lynx ;; - i386-*-sysv4* | i386-*-solaris* | i386-*-elf | i386-*-freebsdelf*) + i386-*-sysv4* | i386-*-solaris* | i386-*-elf) fmt=elf ;; + i386-*-freebsdelf*) fmt=elf ;; + i386-*-freebsd*) fmt=aout em=386bsd ;; i386-*-sco*elf*) fmt=elf if test ${this_target} = $target; then AC_DEFINE(SCO_ELF) |