* configure.tgt (mips*el-*-linux*, mips*-*-linux*): New targets.
authorIan Lance Taylor <ian@airs.com>
Thu, 2 Jan 1997 23:15:34 +0000 (23:15 +0000)
committerIan Lance Taylor <ian@airs.com>
Thu, 2 Jan 1997 23:15:34 +0000 (23:15 +0000)
* scripttempl/elfmips.sc: Use __start as the entry address for
mips*-*-linux*.

ld/ChangeLog
ld/scripttempl/elfmips.sc

index f4d6a47..9348768 100644 (file)
@@ -1,3 +1,9 @@
+Thu Jan  2 18:14:32 1997  Ian Lance Taylor  <ian@cygnus.com>
+
+       * configure.tgt (mips*el-*-linux*, mips*-*-linux*): New targets.
+       * scripttempl/elfmips.sc: Use __start as the entry address for
+       mips*-*-linux*.
+
 Tue Dec 31 14:48:30 1996  Ian Lance Taylor  <ian@cygnus.com>
 
        * Makefile.in (ALL_CFLAGS): Add -D_GNU_SOURCE.
index 3d1c250..19f3e72 100644 (file)
@@ -27,6 +27,7 @@
 if [ -z "$ENTRY" ]; then
   case "${target}" in
   mips*-*-irix5*) ENTRY=__start ;;
+  mips*-*-linux*) ENTRY=__start ;;
   *) ENTRY=_start ;;
   esac
 fi