diff options
author | Hans-Peter Nilsson <hp@axis.com> | 2000-05-21 18:26:10 +0000 |
---|---|---|
committer | Hans-Peter Nilsson <hp@axis.com> | 2000-05-21 18:26:10 +0000 |
commit | 0aa5d42641ee478b4c96ab57ce77c798999b4833 (patch) | |
tree | ce6701d6a5723ff907a91c0f744964d6ddc21141 /gas/configure.in | |
parent | f48026f7d7fb8dfd61661569ce87aebe3d8385af (diff) | |
download | gdb-0aa5d42641ee478b4c96ab57ce77c798999b4833.zip gdb-0aa5d42641ee478b4c96ab57ce77c798999b4833.tar.gz gdb-0aa5d42641ee478b4c96ab57ce77c798999b4833.tar.bz2 |
* stabs.c (aout_process_stab): Make global.
(s_desc): Add ATTRIBUTE_UNUSED to args as appropriate.
* read.h (aout_process_stab): Declare.
* configure.in (EMULATIONS) [i386aout, i386coff, i386elf]:
Generalize to *aout, *coff *elf.
* configure: Regenerated.
* doc/internals.texi (Object format backend): Say
SEPARATE_STAB_SECTIONS needs to be nonzero, not just defined.
Diffstat (limited to 'gas/configure.in')
-rw-r--r-- | gas/configure.in | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gas/configure.in b/gas/configure.in index 10430db..895b425 100644 --- a/gas/configure.in +++ b/gas/configure.in @@ -676,12 +676,12 @@ for em in . $emulations ; do fmt=elf file=mipself ;; mipsbecoff | mipslecoff) fmt=ecoff file=mipsecoff ;; - i386aout) - fmt=aout file=i386aout ;; - i386coff) - fmt=coff file=i386coff ;; - i386elf) - fmt=elf file=i386elf ;; + *coff) + fmt=coff file=$em ;; + *aout) + fmt=aout file=$em ;; + *elf) + fmt=elf file=$em ;; esac formats="$formats $fmt" emfiles="$emfiles e-$file.o" |