from syms.c to new file stab-syms.c.
Renamed to aout_stab_name() and aout_stab_names[].
Also, since GNU extended type codes such as N_SETT are no longer
in ../include/stab.def, include them manually.
reloc.c
section.c
srec.c
+stab-syms.c
sunos.c
syms.c
targets.c
#
#
# $Log$
-# Revision 1.30 1991/11/21 01:56:17 gnu
+# Revision 1.31 1991/11/22 05:00:08 bothner
+# Moved bfd_stab_name() and bfd_stab_names[]
+# from syms.c to new file stab-syms.c.
+# Renamed to aout_stab_name() and aout_stab_names[].
+# Also, since GNU extended type codes such as N_SETT are no longer
+# in ../include/stab.def, include them manually.
+#
+# Revision 1.30 1991/11/21 01:56:17 gnu
# Avoid duplicate echo.
#
# Revision 1.29 1991/11/17 21:38:05 bothner
+Thu Nov 21 19:56:40 1991 Per Bothner (bothner at cygnus.com)
+
+ * stab-syms.c, syms.c: Moved bfd_stab_name() and bfd_stab_names[]
+ from syms.c to new file stab-syms.c. Also, since GNU extended
+ type codes such as N_SETT are no longer in ../include/stab.def,
+ include them manually.
+ * stab-syms.c, aoutx.h: Renamed bfd_stab_name() and
+ bfd_stab_names[] to aout_stab_name() and aout_stab_names[].
+ * libaout.h: Added prototype for aout_stab_name().
+ * Makefile.in: Update Makefile for new stab-syms.[co].
+
Thu Nov 21 11:50:49 1991 John Gilmore (gnu at cygnus.com)
* libaout.h (WORK_OUT_FILE_POSITIONS): One more try at this
srcdir = .
ddestdir = /usr/local
libdir = $(ddestdir)/lib
-docdir = $(srcdir)/doc
+docdir = $(srcdir)$(subdir)/doc
includedir= $(ddestdir)/include
RANLIB = ranlib
AR = ar
#### host and target dependent Makefile fragments come in here.
###
+# Change this (to MINIMIZE=1) to save space in executables.
+# Currently, all this does is control the target_vector in targets.c.
+MINIMIZE=0
+
TARGETLIB = libbfd.a
CFLAGS = $(MINUS_G) $(HDEFINES) $(TDEFINES) $(CSEARCH) $(CSWITCHES) # -DINTEL960VERSION
BFD_MACHINES = cpu-h8300.o cpu-i960.o cpu-sparc.o cpu-m68k.o cpu-m88k.o \
cpu-vax.o cpu-mips.o cpu-a29k.o cpu-i386.o cpu-rs6000.o
-BFD_BACKENDS = oasys.o ieee.o srec.o elf.o \
+BFD_BACKENDS = oasys.o ieee.o srec.o elf.o stab-syms.o\
aout64.o aout32.o demo64.o sunos.o newsos3.o i386aout.o bout.o \
coff-i960.o coff-a29k.o coff-m68k.o coff-i386.o coff-m88k.o \
coff-mips.o coff-rs6000.o
CFILES = libbfd.c opncls.c bfd.c archive.c targets.c cache.c archures.c \
coff-i386.c aout64.c aout32.c sunos.c demo64.c coff-i960.c srec.c \
oasys.c ieee.c coff-m68k.c coff-a29k.c coff-rs6000.c \
- format.c section.c core.c syms.c reloc.c init.c ctor.c \
+ format.c section.c core.c syms.c stabs-syms.c reloc.c init.c ctor.c \
coff-m88k.c coff-mips.c trad-core.c newsos3.c i386aout.c bout.c elf.c \
cpu-h8300.c cpu-i960.c cpu-sparc.c cpu-m68k.c cpu-m88k.c \
cpu-vax.c cpu-mips.c cpu-a29k.c cpu-i386.c cpu-rs6000.c
# When compiling targets.c, supply the default target info from configure.
targets.o: targets.c
- $(CC) $(CFLAGS) -c $(TDEFAULTS) $<
+ $(CC) $(CFLAGS) -c -DMINIMIZE=$(MINIMIZE) $(TDEFAULTS) $<
subdir_do: force
for i in $(DODIRS); do \
$(INCDIR)/obstack.h libbfd.h
syms.o : syms.c $(INCDIR)/bfd.h \
$(INCDIR)/obstack.h libbfd.h
+syms.o : stab-syms.c
reloc.o : reloc.c $(INCDIR)/bfd.h \
$(INCDIR)/obstack.h libbfd.h
coff-m88k.o : coff-m88k.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h libbfd.h \
if (section_code == '?')
{
int type_code = aout_symbol(symbol)->type & 0xff;
- char *stab_name = bfd_stab_name(type_code);
+ char *stab_name = aout_stab_name(type_code);
char buf[10];
if (stab_name == NULL)
{
PROTO (void, NAME(aout,swap_exec_header_out),(bfd *abfd, struct internal_exec *execp,
struct external_exec *raw_bytes));
+/* Prototypes for functions in stab-syms.c. */
+
+PROTO(char *, aout_stab_name, (int code));
+
/* A.out uses the generic versions of these routines... */
#define aout_32_get_section_contents bfd_generic_get_section_contents
return '?';
}
-
-/* Create a table of debugging stab-codes and corresponding names. */
-
-#define __define_stab(NAME, CODE, STRING) {NAME, STRING},
-struct {enum __stab_debug_code code; char *string;} bfd_stab_names[]
- = {
-#include "stab.def"
- };
-#undef __define_stab
-
-/*proto* bfd_stab_name
-Returns a string for the stab with the given code, or NULL if not found.
-
-*; PROTO(char *, bfd_stab_name, (int code));
-*/
-char *
-DEFUN(bfd_stab_name,(code),
-int code)
-{
- register int i;
- for (i = sizeof(bfd_stab_names) / sizeof(bfd_stab_names[0]) - 1; i >= 0; i--)
- if (bfd_stab_names[i].code == (enum __stab_debug_code) code)
- return bfd_stab_names[i].string;
- return NULL;
-}