diff options
author | Alan Modra <amodra@gmail.com> | 2002-07-01 08:31:53 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2002-07-01 08:31:53 +0000 |
commit | ba26fd966ceaf646e22e3b6fc6b3fa8d31b7e6c2 (patch) | |
tree | 012d98438e77346eb39a272677e22297b12a9c75 /bfd/config.bfd | |
parent | e3e942e9908d0fa4d4abf2b39edd99aa07a11535 (diff) | |
download | gdb-ba26fd966ceaf646e22e3b6fc6b3fa8d31b7e6c2.zip gdb-ba26fd966ceaf646e22e3b6fc6b3fa8d31b7e6c2.tar.gz gdb-ba26fd966ceaf646e22e3b6fc6b3fa8d31b7e6c2.tar.bz2 |
* 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 7192696..3fd1551 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 ;; |