diff options
author | Ian Lance Taylor <ian@airs.com> | 1995-10-31 21:41:59 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1995-10-31 21:41:59 +0000 |
commit | d7b2038fac1564c4225cd80340383ffaf463dae8 (patch) | |
tree | 888306f4f220cc864d5409848c19c4b5367d0376 /gas/configure.in | |
parent | 5d0e859038215f5077e45ee866ed4c2d50250e9b (diff) | |
download | gdb-d7b2038fac1564c4225cd80340383ffaf463dae8.zip gdb-d7b2038fac1564c4225cd80340383ffaf463dae8.tar.gz gdb-d7b2038fac1564c4225cd80340383ffaf463dae8.tar.bz2 |
Tue Oct 31 16:34:28 1995 David Mosberger-Tang <davidm@azstarnet.com>
* configure.in (alpha-*-linux*): Use ecoff.
* configure: Rebuild.
* ecoff.c (ecoff_directive_extern): New function.
(ecoff_directive_weakext): New function.
(ecoff_build_symbols): Handle weak symbols.
(ecoff_setup_ext): Likewise.
* ecoff.h (ecoff_directive_extern): Declare.
(ecoff_directive_weakext): Declare.
* symbols.c (S_IS_WEAK): New function.
* symbols.h (S_IS_WEAK): Declare.
* config/obj-ecoff.c (obj_pseudo_table): Add "extern" and
"weakext".
* config/tc-mips.c (mips_pseudo_table): Remove "extern".
(s_extern): Remove.
Diffstat (limited to 'gas/configure.in')
-rw-r--r-- | gas/configure.in | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gas/configure.in b/gas/configure.in index ae283de..a67bf6d 100644 --- a/gas/configure.in +++ b/gas/configure.in @@ -9,7 +9,7 @@ AC_INIT(as.h)dnl dnl user_bfd_gas= AC_ARG_ENABLE(bfd-assembler, -[ bfd-assembler use BFD back end for writing object files], +[ --enable-bfd-assembler use BFD back end for writing object files], [case "${enableval}" in yes) need_bfd=yes user_bfd_gas=yes ;; no) user_bfd_gas=no ;; @@ -132,6 +132,7 @@ changequote([,])dnl alpha-*-netware*) fmt=ecoff ;; alpha-*-osf*) fmt=ecoff ;; + alpha-*-linux*) fmt=ecoff ;; # start-sanitize-arc arc-*-elf*) fmt=elf bfd_gas=yes ;; @@ -144,6 +145,7 @@ changequote([,])dnl *) targ=arm-lit ;; esac ;; + arm-*-coff) fmt=coff ;; arm-*-riscix*) fmt=aout ;; arm-*-pe) fmt=coff targ=armcoff em=pe ;; |