diff options
author | Ken Raeburn <raeburn@cygnus> | 1995-05-05 21:44:11 +0000 |
---|---|---|
committer | Ken Raeburn <raeburn@cygnus> | 1995-05-05 21:44:11 +0000 |
commit | e51a3912effc60335f12ea16b0b02595df15f1fd (patch) | |
tree | 66a68464e072df1b1df98d93e4660c129db4452b /gas/config/obj-coff.h | |
parent | 52f969e29ef9e839cfb447357b4ed6888663bbf3 (diff) | |
download | gdb-e51a3912effc60335f12ea16b0b02595df15f1fd.zip gdb-e51a3912effc60335f12ea16b0b02595df15f1fd.tar.gz gdb-e51a3912effc60335f12ea16b0b02595df15f1fd.tar.bz2 |
SEPARATE_STAB_SECTIONS should be defined to 1, not empty.
Diffstat (limited to 'gas/config/obj-coff.h')
-rw-r--r-- | gas/config/obj-coff.h | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/gas/config/obj-coff.h b/gas/config/obj-coff.h index ae92a02..6574b35 100644 --- a/gas/config/obj-coff.h +++ b/gas/config/obj-coff.h @@ -105,6 +105,11 @@ #define TARGET_FORMAT "coff-m88kbcs" #endif +#ifdef TC_W65 +#include "coff/w65.h" +#define TARGET_FORMAT "coff-w65" +#endif + /* Targets may also set this. Also, if BFD_ASSEMBLER is defined, this will already have been defined. */ #undef SYMBOLS_NEED_BACKPOINTERS @@ -158,6 +163,8 @@ #include "bfd/libcoff.h" +#define OUTPUT_FLAVOR bfd_target_coff_flavour + /* SYMBOL TABLE */ /* Alter the field names, for now, until we've fixed up the other @@ -301,6 +308,7 @@ extern void coff_add_linesym PARAMS ((struct symbol *)); void c_dot_file_symbol PARAMS ((char *filename)); +#define obj_app_file c_dot_file_symbol extern void coff_frob_symbol PARAMS ((struct symbol *, int *)); extern void coff_adjust_symtab PARAMS ((void)); @@ -703,6 +711,7 @@ extern segT obj_coff_add_segment PARAMS ((const char *)); extern void obj_coff_section PARAMS ((int)); extern void c_dot_file_symbol PARAMS ((char *filename)); +#define obj_app_file c_dot_file_symbol extern void obj_extra_stuff PARAMS ((object_headers * headers)); extern segT s_get_segment PARAMS ((struct symbol * ptr)); @@ -741,7 +750,7 @@ extern struct internal_scnhdr text_section_header; #endif /* not BFD_ASSEMBLER */ /* Stabs in a coff file go into their own section. */ -#define SEPARATE_STAB_SECTIONS +#define SEPARATE_STAB_SECTIONS 1 /* We need 12 bytes at the start of the section to hold some initial information. */ |