diff options
author | Ian Lance Taylor <ian@airs.com> | 1996-01-22 18:03:56 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1996-01-22 18:03:56 +0000 |
commit | 7df4ba266bbb42a9254c35a0ba944d70559810b4 (patch) | |
tree | 6d2cf287562ca40dfbb7507c269a7a02890d1dc6 /ld | |
parent | 16ce20d4d7521572e66008b814ba86ed5be59e4f (diff) | |
download | gdb-7df4ba266bbb42a9254c35a0ba944d70559810b4.zip gdb-7df4ba266bbb42a9254c35a0ba944d70559810b4.tar.gz gdb-7df4ba266bbb42a9254c35a0ba944d70559810b4.tar.bz2 |
Mon Jan 22 13:01:35 1996 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
* Makefile.in (GENSCRIPTS): Pass @host@ @target@ @target_alias@.
* genscripts.sh: Set host, target and target_alias variables.
Check for native compile by comparing ${target} and ${host}.
* emultempl/elf32.em: Likewise.
* scripttempl/elfmips.sc: Test ${target}, not ${target_alias}.
Diffstat (limited to 'ld')
-rw-r--r-- | ld/ChangeLog | 8 | ||||
-rw-r--r-- | ld/scripttempl/elfmips.sc | 2 |
2 files changed, 9 insertions, 1 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog index 7bec541..6bfd665 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,11 @@ +Mon Jan 22 13:01:35 1996 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de> + + * Makefile.in (GENSCRIPTS): Pass @host@ @target@ @target_alias@. + * genscripts.sh: Set host, target and target_alias variables. + Check for native compile by comparing ${target} and ${host}. + * emultempl/elf32.em: Likewise. + * scripttempl/elfmips.sc: Test ${target}, not ${target_alias}. + Mon Jan 22 11:03:23 1996 Michael Meissner <meissner@tiktok.cygnus.com> * scripttempl/elfppc.sc: Refine eabi support to better support diff --git a/ld/scripttempl/elfmips.sc b/ld/scripttempl/elfmips.sc index 43c94c7..b5ca98d 100644 --- a/ld/scripttempl/elfmips.sc +++ b/ld/scripttempl/elfmips.sc @@ -24,7 +24,7 @@ # targets. This is for compatibility with Irix 5, and with old MIPS # ELF toolchains. if [ -z "$ENTRY" ]; then - case "${target_alias}" in + case "${target}" in mips*-*-irix5*) ENTRY=__start ;; *) ENTRY=_start ;; esac |