* configure.tgt: Add support for OpenBSD/sparc ELF.

This commit is contained in:
Mark Kettenis 2005-04-14 18:49:04 +00:00
parent 28e97307c8
commit 64efe6255e
2 changed files with 10 additions and 1 deletions

View File

@ -1,5 +1,7 @@
2005-04-14 Mark Kettenis <kettenis@gnu.org>
* configure.tgt: Add support for OpenBSD/sparc ELF.
* configure.tgt: Set emulation for mips-*-openbsd*.
Remove broken mips-dec-openbsd* config.
* configure.in: Set default ABI for mips64-*-openbsd*.

View File

@ -375,11 +375,18 @@ case ${generic_target} in
sparc-*-sysv4*) fmt=elf ;;
sparc-*-solaris*) fmt=elf ;;
sparc-*-netbsdelf*) fmt=elf em=nbsd ;;
sparc-*-*n*bsd*)
sparc-*-netbsd*)
case ${cpu} in
sparc64) fmt=elf em=nbsd ;;
*) fmt=aout em=nbsd ;;
esac ;;
sparc-*-openbsd[0-2].* | \
sparc-*-openbsd3.[0-1])
case ${cpu} in
sparc64) fmt=elf em=nbsd ;;
*) fmt=aout em=nbsd ;;
esac ;;
sparc-*-openbsd*) fmt=elf em=nbsd ;;
tic30-*-*aout*) fmt=aout bfd_gas=yes ;;
tic30-*-*coff*) fmt=coff bfd_gas=yes ;;