add hp300bsd to default target vector
This commit is contained in:
parent
70bec8b806
commit
493a259370
3 changed files with 24 additions and 10 deletions
|
@ -1,3 +1,9 @@
|
|||
Fri Aug 6 12:00:03 1993 David J. Mackenzie (djm@thepub.cygnus.com)
|
||||
|
||||
* targets.c (target_vector): Add hp300_bsd_vec.
|
||||
* Makefile.in (BFD32_BACKENDS, CFILES): Add hp300bsd.
|
||||
(hp300bsd.o): New rule.
|
||||
|
||||
Fri Aug 6 15:13:22 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
|
||||
|
||||
* libelf.h (NAME): Provide a default definition, that's neither
|
||||
|
|
|
@ -89,7 +89,7 @@ BFD32_BACKENDS = \
|
|||
nlm32.o nlm32-gen.o nlm32-i386.o \
|
||||
aout32.o sunos.o newsos3.o mipsbsd.o aout-adobe.o \
|
||||
i386aout.o i386bsd.o i386linux.o i386lynx.o \
|
||||
hp300hpux.o bout.o \
|
||||
hp300bsd.o hp300hpux.o bout.o \
|
||||
coff-i960.o coff-a29k.o coff-m68k.o coff-u68k.o \
|
||||
coff-i386.o coff-m88k.o \
|
||||
coff-rs6000.o coff-h8300.o coff-h8500.o coff-z8k.o coff-we32k.o \
|
||||
|
@ -153,7 +153,7 @@ CFILES = libbfd.c opncls.c bfd.c archive.c targets.c cache.c \
|
|||
elf64.c elf64-gen.c \
|
||||
nlm32.c nlm32-gen.c nlm32-i386.c nlm64.c nlm64-gen.c \
|
||||
coff-alpha.c cpu-alpha.c \
|
||||
hp300hpux.c i386lynx.c
|
||||
hp300bsd.c hp300hpux.c i386lynx.c
|
||||
|
||||
STAGESTUFF = $(TARGETLIB) $(OFILES)
|
||||
|
||||
|
@ -390,6 +390,10 @@ hp300hpux.o : hp300hpux.c aoutx.h $(BFD_H) $(INCDIR)/ansidecl.h \
|
|||
$(INCDIR)/obstack.h libaout.h libbfd.h $(INCDIR)/aout/aout64.h \
|
||||
$(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h \
|
||||
$(INCDIR)/aout/hp300hpux.h aout-target.h
|
||||
hp300bsd.o : hp300bsd.c aoutx.h $(BFD_H) $(INCDIR)/ansidecl.h \
|
||||
$(INCDIR)/obstack.h libaout.h libbfd.h $(INCDIR)/aout/aout64.h \
|
||||
$(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h \
|
||||
aout-target.h
|
||||
demo64.o : demo64.c
|
||||
|
||||
srec.o : srec.c $(BFD_H) $(INCDIR)/obstack.h libbfd.h
|
||||
|
|
|
@ -371,10 +371,11 @@ extern bfd_target bfd_elf32_big_generic_vec;
|
|||
extern bfd_target bfd_elf32_little_generic_vec;
|
||||
extern bfd_target bfd_elf64_big_generic_vec;
|
||||
extern bfd_target bfd_elf64_little_generic_vec;
|
||||
extern bfd_target bfd_nlm32_big_generic_vec;
|
||||
extern bfd_target bfd_nlm32_little_generic_vec;
|
||||
extern bfd_target bfd_nlm64_big_generic_vec;
|
||||
extern bfd_target bfd_nlm64_little_generic_vec;
|
||||
extern bfd_target nlm32_i386_vec;
|
||||
extern bfd_target nlm32_big_generic_vec;
|
||||
extern bfd_target nlm32_little_generic_vec;
|
||||
extern bfd_target nlm64_big_generic_vec;
|
||||
extern bfd_target nlm64_little_generic_vec;
|
||||
extern bfd_target ieee_vec;
|
||||
extern bfd_target oasys_vec;
|
||||
extern bfd_target m88kbcs_vec;
|
||||
|
@ -395,6 +396,7 @@ extern bfd_target z8kcoff_vec;
|
|||
extern bfd_target we32kcoff_vec;
|
||||
extern bfd_target shcoff_vec;
|
||||
extern bfd_target hp300hpux_vec;
|
||||
extern bfd_target hp300bsd_vec;
|
||||
|
||||
#if defined (HOST_HPPAHPUX) || defined (HOST_HPPABSD)
|
||||
extern bfd_target hppa_vec;
|
||||
|
@ -453,13 +455,14 @@ bfd_target *target_vector[] = {
|
|||
&bfd_elf32_bigmips_vec,
|
||||
&bfd_elf32_little_generic_vec,
|
||||
&bfd_elf32_big_generic_vec,
|
||||
&bfd_nlm32_little_generic_vec,
|
||||
&bfd_nlm32_big_generic_vec,
|
||||
&nlm32_i386_vec,
|
||||
&nlm32_little_generic_vec,
|
||||
&nlm32_big_generic_vec,
|
||||
#ifdef BFD64
|
||||
&bfd_elf64_little_generic_vec,
|
||||
&bfd_elf64_big_generic_vec,
|
||||
&bfd_nlm64_little_generic_vec,
|
||||
&bfd_nlm64_big_generic_vec,
|
||||
&nlm64_little_generic_vec,
|
||||
&nlm64_big_generic_vec,
|
||||
#endif
|
||||
&a_out_adobe_vec,
|
||||
&b_out_vec_little_host,
|
||||
|
@ -472,6 +475,7 @@ bfd_target *target_vector[] = {
|
|||
&hppa_vec,
|
||||
#endif
|
||||
&hp300hpux_vec,
|
||||
&hp300bsd_vec,
|
||||
&we32kcoff_vec,
|
||||
|
||||
#ifdef TRAD_CORE
|
||||
|
|
Loading…
Add table
Reference in a new issue