From: Ian Lance Taylor Date: Thu, 2 Jan 1997 23:15:34 +0000 (+0000) Subject: * configure.tgt (mips*el-*-linux*, mips*-*-linux*): New targets. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=093427533c0c316240ad5d41bfa5aa16b2de71d3;p=binutils-gdb.git * configure.tgt (mips*el-*-linux*, mips*-*-linux*): New targets. * scripttempl/elfmips.sc: Use __start as the entry address for mips*-*-linux*. --- diff --git a/ld/ChangeLog b/ld/ChangeLog index f4d6a476e8b..934876813ee 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,9 @@ +Thu Jan 2 18:14:32 1997 Ian Lance Taylor + + * 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 * Makefile.in (ALL_CFLAGS): Add -D_GNU_SOURCE. diff --git a/ld/scripttempl/elfmips.sc b/ld/scripttempl/elfmips.sc index 3d1c250cbf9..19f3e72a0f5 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