diff options
author | Ian Lance Taylor <ian@airs.com> | 1994-10-18 18:51:01 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1994-10-18 18:51:01 +0000 |
commit | c768bd3f2da5eaa0a1a458a3104670da1c0d531f (patch) | |
tree | 30c30c4cca99d7b2b825a1d34785d8b9a78fa4a1 /bfd/targets.c | |
parent | d7785845ff5fbcdf50d56d944b2695bb5d3caf79 (diff) | |
download | gdb-c768bd3f2da5eaa0a1a458a3104670da1c0d531f.zip gdb-c768bd3f2da5eaa0a1a458a3104670da1c0d531f.tar.gz gdb-c768bd3f2da5eaa0a1a458a3104670da1c0d531f.tar.bz2 |
* binary.c: New file for raw binary output format.
* Makefile.in (BFD_LIBS): Add binary.o.
(CFILES): Add binary.c.
* targets.c (binary_vec): Declare.
(bfd_target_vector): Include binary_vec.
Diffstat (limited to 'bfd/targets.c')
-rw-r--r-- | bfd/targets.c | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/bfd/targets.c b/bfd/targets.c index f73b3ce..085028d 100644 --- a/bfd/targets.c +++ b/bfd/targets.c @@ -476,7 +476,7 @@ extern const bfd_target nlm32_i386_vec; extern const bfd_target nlm32_sparc_vec; extern const bfd_target nlm32_alpha_vec; extern const bfd_target nlm32_powerpc_vec; -extern const bfd_target ns32knetbsd_vec; +extern const bfd_target pc532netbsd_vec; extern const bfd_target oasys_vec; extern const bfd_target pc532machaout_vec; extern const bfd_target riscix_vec; @@ -495,6 +495,9 @@ extern const bfd_target z8kcoff_vec; extern const bfd_target srec_vec; extern const bfd_target symbolsrec_vec; +/* binary is always included. */ +extern const bfd_target binary_vec; + /* All of the xvecs for core files. */ extern const bfd_target aix386_core_vec; extern const bfd_target cisco_core_vec; @@ -611,7 +614,7 @@ const bfd_target * const bfd_target_vector[] = { #ifdef BFD64 &nlm32_alpha_vec, #endif - &ns32knetbsd_vec, + &pc532netbsd_vec, #if 0 /* We have no oasys tools anymore, so we can't test any of this anymore. If you want to test the stuff yourself, go ahead... @@ -644,6 +647,9 @@ const bfd_target * const bfd_target_vector[] = { &srec_vec, &symbolsrec_vec, +/* Likewise for binary output. */ + &binary_vec, + /* Add any required traditional-core-file-handler. */ #ifdef AIX386_CORE |