diff options
author | Nick Clifton <nickc@redhat.com> | 2001-11-02 17:07:52 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2001-11-02 17:07:52 +0000 |
commit | dc5e727b86cc05ea74d34a54d3aa9d3a67005dd2 (patch) | |
tree | 20cee67f61c631bc13b963f6be96a2abfb6e7641 /ld/testsuite/ld-sh | |
parent | 3a9091c4e556853a0229057818972f0141cc4054 (diff) | |
download | binutils-gdb-dc5e727b86cc05ea74d34a54d3aa9d3a67005dd2.tar.gz |
Fix testsuites for bigendian sh-linux
Diffstat (limited to 'ld/testsuite/ld-sh')
-rw-r--r-- | ld/testsuite/ld-sh/sh.exp | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/ld/testsuite/ld-sh/sh.exp b/ld/testsuite/ld-sh/sh.exp index cfbc02c5cc4..8a5b8fc7fcd 100644 --- a/ld/testsuite/ld-sh/sh.exp +++ b/ld/testsuite/ld-sh/sh.exp @@ -111,8 +111,15 @@ if { [which $CC] == 0 } { return } -if {![ld_assemble $as "-relax $srcdir/$subdir/start.s" tmpdir/start.o] \ - || ![ld_compile $CC "-O -mrelax $srcdir/$subdir/sh2.c" tmpdir/sh2.o]} { +if [istarget sh*-linux-gnu] { + exec sed -e s/_main/main/ -e s/_trap/trap/ -e s/_stack/stack/ \ + < $srcdir/$subdir/start.s >tmpdir/start.s +} else { + exec $srcdir/$subdir/start.s tmpdir/start.s +} + +if {![ld_assemble $as "-relax tmpdir/start.s" tmpdir/start.o] \ + || ![ld_compile $CC "-O -mrelax $srcdir/$subdir/sh2.c" tmpdir/sh2.o]} { unresolved $testlink unresolved $testjsr unresolved $testrun |