Fix testsuites for bigendian sh-linux
This commit is contained in:
parent
3a9091c4e5
commit
dc5e727b86
4 changed files with 23 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
|||
2001-11-02 NIIBE Yutaka <gniibe@m17n.org>
|
||||
|
||||
* gas/sh/basic.exp: For Linux, add "-big" option for the
|
||||
invocation of gas.
|
||||
|
||||
2001-11-01 Stephane Carrez <Stephane.Carrez@worldnet.fr>
|
||||
|
||||
* gas/m68hc11/opers12.s: Add test for disassembler bug with movb
|
||||
|
|
|
@ -19,6 +19,11 @@
|
|||
|
||||
# Written by Cygnus Support.
|
||||
|
||||
if [istarget "sh*-*-linux-gnu"] {
|
||||
global ASFLAGS
|
||||
set ASFLAGS "$ASFLAGS -big"
|
||||
}
|
||||
|
||||
proc do_fp {} {
|
||||
set testname "fp.s: floating point tests (sh3e)"
|
||||
set x 0
|
||||
|
|
|
@ -1,3 +1,7 @@
|
|||
2001-11-02 NIIBE Yutaka <gniibe@m17n.org>
|
||||
|
||||
* ld-sh/sh.exp: Have its own start.s for linux.
|
||||
|
||||
2001-10-31 Hans-Peter Nilsson <hp@bitrange.com>
|
||||
|
||||
* ld-mmix/locdo-1.d: Prune character dump part.
|
||||
|
|
|
@ -111,7 +111,14 @@ if { [which $CC] == 0 } {
|
|||
return
|
||||
}
|
||||
|
||||
if {![ld_assemble $as "-relax $srcdir/$subdir/start.s" tmpdir/start.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
|
||||
|
|
Loading…
Reference in a new issue