diff options
author | Jim Kingdon <jkingdon@engr.sgi.com> | 1993-10-28 04:05:28 +0000 |
---|---|---|
committer | Jim Kingdon <jkingdon@engr.sgi.com> | 1993-10-28 04:05:28 +0000 |
commit | 2487f88fdcf0b71aae73f919fc222475dab4ec1b (patch) | |
tree | ec7f10114d07fe62c4c1135c8ab4d1b0dd0e0379 | |
parent | 729f4bbaa80e9ccae896240b65b78cf6abd2d5f7 (diff) | |
download | gdb-2487f88fdcf0b71aae73f919fc222475dab4ec1b.zip gdb-2487f88fdcf0b71aae73f919fc222475dab4ec1b.tar.gz gdb-2487f88fdcf0b71aae73f919fc222475dab4ec1b.tar.bz2 |
* configure.in, config/i386-mach3.mt: Update for new configuration
(--with-targets and so on).
* hosts/i386mach3.h: Declare errno.
* targets.c: Declare i386mach3_vec.
-rw-r--r-- | bfd/ChangeLog | 7 | ||||
-rw-r--r-- | bfd/configure.in | 4 | ||||
-rw-r--r-- | bfd/targets.c | 1 |
3 files changed, 11 insertions, 1 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 8135b7c..cc9a7ea 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,10 @@ +Wed Oct 27 16:51:29 1993 Jim Kingdon (kingdon@lioth.cygnus.com) + + * configure.in, config/i386-mach3.mt: Update for new configuration + (--with-targets and so on). + * hosts/i386mach3.h: Declare errno. + * targets.c: Declare i386mach3_vec. + Wed Oct 27 12:18:07 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com) * nlmcode.h (nlm_swap_auxiliary_headers_in, diff --git a/bfd/configure.in b/bfd/configure.in index a5d5509..6a08500 100644 --- a/bfd/configure.in +++ b/bfd/configure.in @@ -139,6 +139,7 @@ do a_out_adobe_vec) tb="$tb aout-adobe.o aout32.o stab-syms.o" ;; aout_mips_big_vec) tb="$tb mipsbsd.o aout32.o stab-syms.o" ;; aout_mips_little_vec) tb="$tb mipsbsd.o aout32.o stab-syms.o" ;; + apollocoff_vec) tb="$tb coff-apollo.o" ;; b_out_vec_big_host) tb="$tb bout.o aout32.o stab-syms.o" ;; b_out_vec_little_host) tb="$tb bout.o aout32.o stab-syms.o" ;; bfd_elf32_big_generic_vec) tb="$tb elf32-gen.o elf32.o elf.o" ;; @@ -169,7 +170,7 @@ do host_aout_vec) tb="$tb host-aout.o aout32.o stab-syms.o" ;; hp300bsd_vec) tb="$tb hp300bsd.o aout32.o stab-syms.o" ;; hp300hpux_vec) tb="$tb hp300hpux.o aout32.o stab-syms.o" ;; - hppa_vec) tb="$tb som.o" ;; + som_vec) tb="$tb som.o" ;; i386aout_vec) tb="$tb i386aout.o aout32.o stab-syms.o" ;; i386bsd_vec) tb="$tb i386bsd.o aout32.o stab-syms.o" ;; netbsd386_vec) tb="$tb netbsd386.o aout32.o stab-syms.o" ;; @@ -177,6 +178,7 @@ do i386linux_vec) tb="$tb i386linux.o aout32.o stab-syms.o" ;; i386lynx_aout_vec) tb="$tb i386lynx.o lynx-core.o aout32.o stab-syms.o" ;; i386lynx_coff_vec) tb="$tb i386lynx-cf.o lynx-core.o stab-syms.o" ;; + i386mach3_vec) tb="$tb i386mach3.o" ;; icoff_big_vec) tb="$tb coff-i960.o" ;; icoff_little_vec) tb="$tb coff-i960.o" ;; ieee_vec) tb="$tb ieee.o" ;; diff --git a/bfd/targets.c b/bfd/targets.c index 04598d5..2c6cf4d 100644 --- a/bfd/targets.c +++ b/bfd/targets.c @@ -361,6 +361,7 @@ extern bfd_target i386coff_vec; extern bfd_target i386linux_vec; extern bfd_target i386lynx_aout_vec; extern bfd_target i386lynx_coff_vec; +extern bfd_target i386mach3_vec; extern bfd_target icoff_big_vec; extern bfd_target icoff_little_vec; extern bfd_target ieee_vec; |