diff options
author | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1997-07-03 14:39:27 +0000 |
---|---|---|
committer | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1997-07-03 14:39:27 +0000 |
commit | b1877b1cb8da2c0d5f06a339e578fce54124b0b4 (patch) | |
tree | 08b654ed3b0dfa786816006f97e7c462052b6b3e /gnu/usr.bin/binutils/bfd/targets.c | |
parent | f4169a2a116c1cb827bb8d82027319c014ee18e4 (diff) |
support coredump parsing on alpha
Diffstat (limited to 'gnu/usr.bin/binutils/bfd/targets.c')
-rw-r--r-- | gnu/usr.bin/binutils/bfd/targets.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gnu/usr.bin/binutils/bfd/targets.c b/gnu/usr.bin/binutils/bfd/targets.c index 728cdb32bf4..c33e41dc2ec 100644 --- a/gnu/usr.bin/binutils/bfd/targets.c +++ b/gnu/usr.bin/binutils/bfd/targets.c @@ -591,6 +591,7 @@ extern const bfd_target cisco_core_vec; extern const bfd_target hpux_core_vec; extern const bfd_target hppabsd_core_vec; extern const bfd_target irix_core_vec; +extern const bfd_target netbsd_core_vec; extern const bfd_target osf_core_vec; extern const bfd_target sco_core_vec; extern const bfd_target trad_core_vec; @@ -798,6 +799,9 @@ const bfd_target * const bfd_target_vector[] = { #ifdef IRIX_CORE &irix_core_vec, #endif +#ifdef NETBSD_CORE + &netbsd_core_vec, +#endif #ifdef OSF_CORE &osf_core_vec, #endif |