Fix some mips configure problems.

This commit is contained in:
Alan Modra 2000-07-13 14:57:49 +00:00
parent c8e2a5aa11
commit 906fac54a8
3 changed files with 190 additions and 203 deletions

View File

@ -1,3 +1,14 @@
2000-07-13 Koundinya K <kk@ddeorg.soft.net>
* configure.in: Remove the test /usr/dde for mips-*-sysv4*MP*
* configure: Regenerate.
2000-07-13 Hans-Peter Nilsson <hp@axis.com>
* configure.in (DEFAULT_EMULATION setting): Revert part of
2000-07-01 change that set te_multi=multi unless set to tmips.
* configure: Regenerate.
2000-07-12 Mark Elbrecht <snowball3@bigfoot.com>
* config/obj-coff.c (coff_frob_section): Add padding to the last

366
gas/configure vendored

File diff suppressed because it is too large Load Diff

View File

@ -322,11 +322,7 @@ changequote([,])dnl
mips-*-irix*) fmt=ecoff ;;
mips-*-lnews*) fmt=ecoff em=lnews ;;
mips-*-riscos*) fmt=ecoff ;;
mips-*-sysv4*MP*) if test -d /usr/dde; then
fmt=elf
em=tmips
fi
;;
mips-*-sysv4*MP*) fmt=elf em=tmips ;;
mips-*-sysv*) fmt=ecoff ;;
mips-*-elf* | mips-*-rtems* | mips-*-linux-gnu* | mips-*-gnu* | mips-*-openbsd*)
fmt=elf ;;
@ -570,10 +566,7 @@ changequote([,])dnl
big) emulation="mipsbelf mipslelf mipself" ;;
*) emulation="mipslelf mipsbelf mipself" ;;
esac ;;
mips-*-sysv4*MP*-*) if test -d /usr/dde; then
emulation="mipsbelf mipslelf mipself mipsbecoff mipslecoff mipsecoff"
fi
;;
mips-*-sysv4*MP*-*) emulation="mipsbelf mipslelf mipself mipsbecoff mipslecoff mipsecoff" ;;
# i386-pc-pe-coff != i386-pc-coff.
i386-*-pe-coff) ;;
# Uncommenting the next line will turn on support for i386 AOUT
@ -735,11 +728,6 @@ if test `set . $emfiles ; shift ; echo $#` -gt 0 ; then
# USE_EMULATIONS or include any of the e-files as they will only be bloat.
case "${obj_format}${emfiles}" in
multi* | *mips*)
# if te_file is tmips, that means the target is mips-*-sysv4*MP* and we do
# not set it to multi.
if [[ $te_file -ne "tmips" ]]; then
te_file=multi
fi
extra_objects="$extra_objects $emfiles"
AC_DEFINE(USE_EMULATIONS, 1, [Use emulation support?]) ;;
esac