Add support for sparc-*-netbsdelf* and sparc-*-netbsdaout*.

This commit is contained in:
Andrew Cagney 1999-12-14 05:13:29 +00:00
parent ceddadb217
commit 93be3c4bd2
2 changed files with 15 additions and 1 deletions

View File

@ -1,3 +1,8 @@
1999-12-09 Andrew Cagney <cagney@cygnus.com>
* config.bfd: Add support for sparc-*-netbsdelf* and
sparc-*-netbsdaout*.
1999-12-13 Nick Clifton <nickc@cygnus.com>
* elflink.h (elf_link_is_defined_archive_symbol): Check to see

View File

@ -643,7 +643,16 @@ case "${targ}" in
targ_defvec=sparclynx_coff_vec
targ_selvecs=sparclynx_aout_vec
;;
sparc-*-netbsd* | sparc-*-openbsd*)
sparc-*-netbsdelf*)
targ_defvec=bfd_elf32_sparc_vec
targ_selvecs=sparcnetbsd_vec
;;
sparc-*-netbsdaout* | sparc-*-netbsd*)
targ_defvec=sparcnetbsd_vec
targ_selvecs=bfd_elf32_sparc_vec
targ_underscore=yes
;;
sparc-*-openbsd*)
targ_defvec=sparcnetbsd_vec
targ_underscore=yes
;;