From 2c4f2c7296908537ba79707c64fdc5c47856da05 Mon Sep 17 00:00:00 2001 From: Jim Kingdon Date: Fri, 18 Jun 1993 16:07:34 +0000 Subject: [PATCH] * Makefile.in: Add elf32-{mips,m88k}. elf32-{mips,m88k}.c: New files. targets.c (target_vector): Include bfd_elf32_{mips,m88k}_vec. --- bfd/.Sanitize | 2 ++ bfd/ChangeLog | 6 ++++++ bfd/Makefile.in | 8 ++++++-- bfd/targets.c | 10 ++++++++-- 4 files changed, 22 insertions(+), 4 deletions(-) diff --git a/bfd/.Sanitize b/bfd/.Sanitize index 056271f73d..ef6561ffa0 100644 --- a/bfd/.Sanitize +++ b/bfd/.Sanitize @@ -77,6 +77,8 @@ elf32-i386.c elf32-i860.c elf32-m68k.c elf32-sparc.c +elf32-m88k.c +elf32-mips.c elf32-target.h elf32.c elf64.c diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 1bb0cd8087..96e185c2b0 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,9 @@ +Fri Jun 18 10:00:14 1993 Jim Kingdon (kingdon@lioth.cygnus.com) + + * Makefile.in: Add elf32-{mips,m88k}. + elf32-{mips,m88k}.c: New files. + targets.c (target_vector): Include bfd_elf32_{mips,m88k}_vec. + Fri Jun 18 03:12:12 1993 John Gilmore (gnu@cygnus.com) Eliminate "int8_type", "int16_type", "int32_type", and their diff --git a/bfd/Makefile.in b/bfd/Makefile.in index cc6cacf2a5..d75ffd8206 100644 --- a/bfd/Makefile.in +++ b/bfd/Makefile.in @@ -84,7 +84,7 @@ BFD32_BACKENDS = aout32.o sunos.o newsos3.o mipsbsd.o aout-adobe.o \ coff-mips.o coff-msym.o \ elf.o \ elf32.o elf32-sparc.o elf32-i386.o elf32-i860.o elf32-m68k.o \ - elf32-hppa.o \ + elf32-hppa.o elf32-mips.o elf32-m88k.o \ bout.o \ hppa.o oasys.o ieee.o srec.o stab-syms.o coff-alpha.o coff-sh.o \ hp300hpux.o @@ -137,7 +137,7 @@ CFILES = libbfd.c opncls.c bfd.c archive.c targets.c cache.c \ cpu-rs6000.c coff-h8300.c hppa.c cpu-hppa.c cpu-we32k.c reloc16.c \ mipsbsd.c cpu-sh.c \ elf32.c elf32-sparc.c elf32-i386.c elf32-i860.c elf32-m68k.c \ - elf32-hppa.c \ + elf32-hppa.c elf32-m88k.c elf32-mips.c \ elf64.c \ coff-alpha.c cpu-alpha.c \ hp300hpux.c i386lynx.c @@ -465,6 +465,10 @@ elf32-i386.o : elf32-i386.c libelf.h libbfd.h $(BFD_H) \ $(INCDIR)/obstack.h elf32-hppa.o : elf32-hppa.c $(srcdir)/elf32-hppa.h libelf.h libbfd.h \ $(BFD_H) $(INCDIR)/obstack.h +elf32-m88k.o : elf32-m88k.c $(srcdir)/elf32-hppa.h libelf.h libbfd.h \ + $(BFD_H) $(INCDIR)/obstack.h +elf32-mips.o : elf32-mips.c $(srcdir)/elf32-hppa.h libelf.h libbfd.h \ + $(BFD_H) $(INCDIR)/obstack.h elf64.o : elf64.c elfcode.h libelf.h libbfd.h $(BFD_H) \ $(INCDIR)/obstack.h diff --git a/bfd/targets.c b/bfd/targets.c index 9445f2aa68..e14a5bfd0b 100644 --- a/bfd/targets.c +++ b/bfd/targets.c @@ -361,6 +361,9 @@ extern bfd_target bfd_elf32_sparc_vec; extern bfd_target bfd_elf32_i386_vec; extern bfd_target bfd_elf32_m68k_vec; extern bfd_target bfd_elf32_i860_vec; +extern bfd_target bfd_elf32_m88k_vec; +extern bfd_target bfd_elf32_bigmips_vec; +extern bfd_target bfd_elf32_littlemips_vec; extern bfd_target ieee_vec; extern bfd_target oasys_vec; extern bfd_target m88kbcs_vec; @@ -416,7 +419,7 @@ bfd_target *target_vector[] = { &oasys_vec, #endif &sunos_big_vec, -#ifdef HOST_64_BIT +#ifdef BFD64 &demo_64_vec, /* Only compiled if host has long-long support */ #endif &h8300coff_vec, @@ -431,6 +434,9 @@ bfd_target *target_vector[] = { &bfd_elf32_i386_vec, &bfd_elf32_m68k_vec, &bfd_elf32_i860_vec, + &bfd_elf32_m88k_vec, + &bfd_elf32_littlemips_vec, + &bfd_elf32_bigmips_vec, &a_out_adobe_vec, &b_out_vec_little_host, &b_out_vec_big_host, @@ -449,7 +455,7 @@ bfd_target *target_vector[] = { &sco_core_vec, #endif #ifdef AIX386_CORE - &aix386_core_vec, + &aix386_core_vec, #endif #endif /* not SELECT_VECS */