diff options
author | Alan Modra <amodra@bigpond.net.au> | 2002-07-01 08:31:53 +0000 |
---|---|---|
committer | Alan Modra <amodra@bigpond.net.au> | 2002-07-01 08:31:53 +0000 |
commit | 7bdb46ef1625eed54b08e5d0b52d7a5db629e6ad (patch) | |
tree | 2f64d50ffedf895b4b05932c330b66d9aeac9d4e /bfd/config.bfd | |
parent | 828e11d34287e5052587c828be1268bd13938487 (diff) | |
download | gdb-7bdb46ef1625eed54b08e5d0b52d7a5db629e6ad.tar.gz |
* vaxbsd.c: New BFD backend for VAX BSD and Ultrix.
* Makefile.am (BFD32_BACKENDS, BFD32_BACKENDS_CFILES): Add new backend.
Run "make dep-am".
* config.bfd (vax-*-bsd* | vax-*-ultrix*): Use vaxbsd_vec instead of
host_aout_vec.
* configure.in (vaxbsd_vec): Add.
* targets.c (vaxbsd_vec): Add.
* Makefile.in: Rebuild.
* configure: Rebuild.
* po/SRC-POTFILES.in: Rebuild.
Diffstat (limited to 'bfd/config.bfd')
-rw-r--r-- | bfd/config.bfd | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/bfd/config.bfd b/bfd/config.bfd index 71926965023..3fd155151d1 100644 --- a/bfd/config.bfd +++ b/bfd/config.bfd @@ -1097,12 +1097,6 @@ case "${targ}" in v850ea-*-*) targ_defvec=bfd_elf32_v850_vec ;; -#if HAVE_host_aout_vec - vax-*-bsd* | vax-*-ultrix*) - targ_defvec=host_aout_vec - targ_underscore=yes - ;; -#endif vax-*-netbsdelf*) targ_defvec=bfd_elf32_vax_vec @@ -1115,6 +1109,11 @@ case "${targ}" in targ_underscore=yes ;; + vax-*-bsd* | vax-*-ultrix*) + targ_defvec=vaxbsd_vec + targ_underscore=yes + ;; + vax*-*-*vms*) targ_defvec=vms_vax_vec ;; |