diff options
author | Ian Lance Taylor <ian@airs.com> | 1996-01-31 19:06:17 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1996-01-31 19:06:17 +0000 |
commit | 66b935dacec7ebe6c5ba596d494ae6f6e357314e (patch) | |
tree | e5526a93bd9b7caab68b24f7bb2ea46e63f20a44 /gas/config/te-aux.h | |
parent | d586f394b59ac2469da1e6d8cc2f130559371027 (diff) | |
download | gdb-66b935dacec7ebe6c5ba596d494ae6f6e357314e.zip gdb-66b935dacec7ebe6c5ba596d494ae6f6e357314e.tar.gz gdb-66b935dacec7ebe6c5ba596d494ae6f6e357314e.tar.bz2 |
Wed Jan 31 14:03:17 1996 Richard Henderson <rth@tamu.edu>
* configure.in (m68*-apple-aux*): New target.
* config/te-aux.h: New file.
* config/obj-coff.c (compare_external_relocs): New static function
if TE_AUX.
(do_relocs_for): Sort relocs if TE_AUX.
(fixup_segment): If TE_AUX, store common symbol value in segment.
* config/tc-m68k.h (TARGET_FORMAT): Define if TE_AUX.
Diffstat (limited to 'gas/config/te-aux.h')
-rw-r--r-- | gas/config/te-aux.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/gas/config/te-aux.h b/gas/config/te-aux.h new file mode 100644 index 0000000..b2d7759 --- /dev/null +++ b/gas/config/te-aux.h @@ -0,0 +1,17 @@ +#define TE_AUX + +/* From obj-coff.h: + This internal_lineno crap is to stop namespace pollution from the + bfd internal coff headerfile. */ +#define internal_lineno bfd_internal_lineno +#include "coff/aux.h" /* override bits in coff/internal.h */ +#undef internal_lineno + +#define COFF_NOLOAD_PROBLEM +#define KEEP_RELOC_INFO + +#include "obj-format.h" + +#ifndef LOCAL_LABELS_FB +#define LOCAL_LABELS_FB 1 +#endif |