aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorJim Wilson <wilson@cygnus.com>1998-07-08 15:09:39 +0000
committerJim Wilson <wilson@gcc.gnu.org>1998-07-08 08:09:39 -0700
commit6e9856bad2bbef3d63c761a50037b6cb11663be8 (patch)
tree0634a7bce11a719583e8007c695e173caace5a35 /gcc
parent15bfc37c697a41404bc59ea20cf8805e88e4f13c (diff)
downloadgcc-6e9856bad2bbef3d63c761a50037b6cb11663be8.zip
gcc-6e9856bad2bbef3d63c761a50037b6cb11663be8.tar.gz
gcc-6e9856bad2bbef3d63c761a50037b6cb11663be8.tar.bz2
Fix big/little endian confusion.
* configure.in (mips64orion-*-rtems*): Use elf64.h not elfl64.h. From-SVN: r21010
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog4
-rwxr-xr-xgcc/configure2
-rw-r--r--gcc/configure.in2
3 files changed, 6 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 39d6e31..687542a 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,7 @@
+Wed Jul 8 15:08:29 1998 Jim Wilson <wilson@cygnus.com>
+
+ * configure.in (mips64orion-*-rtems*): Use elf64.h not elfl64.h.
+
1998-07-08 Vladimir N. Makarov <vmakarov@cygnus.com>
* config/fp-bit.c (__gexf2, __fixxfsi, __floatsixf): Add function
diff --git a/gcc/configure b/gcc/configure
index 51d341d..654ec63 100755
--- a/gcc/configure
+++ b/gcc/configure
@@ -4080,7 +4080,7 @@ for machine in $build $host $target; do
tmake_file=mips/t-ecoff
;;
mips64orion-*-rtems*)
- tm_file="mips/elforion.h mips/elfl64.h mips/rtems64.h"
+ tm_file="mips/elforion.h mips/elf64.h mips/rtems64.h"
tmake_file="mips/t-ecoff t-rtems"
;;
mipstx39el-*-elf*)
diff --git a/gcc/configure.in b/gcc/configure.in
index a5e96be..1714963 100644
--- a/gcc/configure.in
+++ b/gcc/configure.in
@@ -2176,7 +2176,7 @@ for machine in $build $host $target; do
tmake_file=mips/t-ecoff
;;
mips64orion-*-rtems*)
- tm_file="mips/elforion.h mips/elfl64.h mips/rtems64.h"
+ tm_file="mips/elforion.h mips/elf64.h mips/rtems64.h"
tmake_file="mips/t-ecoff t-rtems"
;;
mipstx39el-*-elf*)