aboutsummaryrefslogtreecommitdiff
path: root/ld
diff options
context:
space:
mode:
authorIan Lance Taylor <ian@airs.com>1997-01-02 23:15:34 +0000
committerIan Lance Taylor <ian@airs.com>1997-01-02 23:15:34 +0000
commit093427533c0c316240ad5d41bfa5aa16b2de71d3 (patch)
treef84d3c09db071794780fb67a115ffa002c96a7b1 /ld
parent103e1158ca9d8288ea5e3ac067e7e8ac8d7f132a (diff)
downloadbinutils-093427533c0c316240ad5d41bfa5aa16b2de71d3.zip
binutils-093427533c0c316240ad5d41bfa5aa16b2de71d3.tar.gz
binutils-093427533c0c316240ad5d41bfa5aa16b2de71d3.tar.bz2
* configure.tgt (mips*el-*-linux*, mips*-*-linux*): New targets.
* scripttempl/elfmips.sc: Use __start as the entry address for mips*-*-linux*.
Diffstat (limited to 'ld')
-rw-r--r--ld/ChangeLog6
-rw-r--r--ld/scripttempl/elfmips.sc1
2 files changed, 7 insertions, 0 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog
index f4d6a47..9348768 100644
--- a/ld/ChangeLog
+++ b/ld/ChangeLog
@@ -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.
diff --git a/ld/scripttempl/elfmips.sc b/ld/scripttempl/elfmips.sc
index 3d1c250..19f3e72 100644
--- a/ld/scripttempl/elfmips.sc
+++ b/ld/scripttempl/elfmips.sc
@@ -27,6 +27,7 @@
if [ -z "$ENTRY" ]; then
case "${target}" in
mips*-*-irix5*) ENTRY=__start ;;
+ mips*-*-linux*) ENTRY=__start ;;
*) ENTRY=_start ;;
esac
fi