* configure.tgt (mips*el-*-linux*, mips*-*-linux*): New targets.

* scripttempl/elfmips.sc: Use __start as the entry address for
	mips*-*-linux*.
This commit is contained in:
Ian Lance Taylor 1997-01-02 23:15:34 +00:00
parent 103e1158ca
commit 093427533c
2 changed files with 7 additions and 0 deletions

View 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.

View file

@ -27,6 +27,7 @@
if [ -z "$ENTRY" ]; then
case "${target}" in
mips*-*-irix5*) ENTRY=__start ;;
mips*-*-linux*) ENTRY=__start ;;
*) ENTRY=_start ;;
esac
fi