diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2001-06-07 23:43:46 +0000 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2001-06-07 23:43:46 +0000 |
commit | f85f789b4ce0339334d5a18926cc6c97abdcd8ac (patch) | |
tree | a9f844cfe3e673c79e9ea982a6b617fb1538132d /gas | |
parent | 8f45b7fe58e8e257b07751f611e80ccbdf51c276 (diff) | |
download | gdb-f85f789b4ce0339334d5a18926cc6c97abdcd8ac.zip gdb-f85f789b4ce0339334d5a18926cc6c97abdcd8ac.tar.gz gdb-f85f789b4ce0339334d5a18926cc6c97abdcd8ac.tar.bz2 |
2001-06-07 H.J. Lu <hjl@gnu.org>
* configure.in: Move "mips-*-linux-gnu*" before "mips-*-gnu*".
* configure: Regenerate.
Diffstat (limited to 'gas')
-rw-r--r-- | gas/ChangeLog | 5 | ||||
-rwxr-xr-x | gas/configure | 4 | ||||
-rw-r--r-- | gas/configure.in | 4 |
3 files changed, 9 insertions, 4 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index 3b5a925..55d3818 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,5 +1,10 @@ 2001-06-07 H.J. Lu <hjl@gnu.org> + * configure.in: Move "mips-*-linux-gnu*" before "mips-*-gnu*". + * configure: Regenerate. + +2001-06-07 H.J. Lu <hjl@gnu.org> + * configure.in: Use MIPS_STABS_ELF for Linux/mips and remove ecoff emulation. * configure: Regenerate. diff --git a/gas/configure b/gas/configure index fac3898..f610ddb 100755 --- a/gas/configure +++ b/gas/configure @@ -2474,8 +2474,6 @@ EOF mips-*-irix*) fmt=ecoff ;; mips-*-lnews*) fmt=ecoff em=lnews ;; mips-*-riscos*) fmt=ecoff ;; - mips-*-sysv4*MP* | mips-*-gnu*) - fmt=elf em=tmips ;; mips-*-linux-gnu*) fmt=elf em=tmips cat >> confdefs.h <<\EOF @@ -2483,6 +2481,8 @@ EOF EOF ;; + mips-*-sysv4*MP* | mips-*-gnu*) + fmt=elf em=tmips ;; mips-*-sysv*) fmt=ecoff ;; mips-*-elf* | mips-*-rtems* | mips-*-openbsd*) fmt=elf ;; diff --git a/gas/configure.in b/gas/configure.in index 6267f3d..a41f358 100644 --- a/gas/configure.in +++ b/gas/configure.in @@ -346,13 +346,13 @@ changequote([,])dnl mips-*-irix*) fmt=ecoff ;; mips-*-lnews*) fmt=ecoff em=lnews ;; mips-*-riscos*) fmt=ecoff ;; - mips-*-sysv4*MP* | mips-*-gnu*) - fmt=elf em=tmips ;; mips-*-linux-gnu*) fmt=elf em=tmips AC_DEFINE(MIPS_STABS_ELF, 1, [Use ELF stabs for MIPS, not ECOFF stabs]) ;; + mips-*-sysv4*MP* | mips-*-gnu*) + fmt=elf em=tmips ;; mips-*-sysv*) fmt=ecoff ;; mips-*-elf* | mips-*-rtems* | mips-*-openbsd*) fmt=elf ;; |