mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-24 23:32:06 +00:00
32 lines
709 B
Plaintext
32 lines
709 B
Plaintext
if { ! [istarget nios2-*-*] } {
|
|
return
|
|
}
|
|
|
|
foreach test [lsort [glob -nocomplain $srcdir/$subdir/*.d]] {
|
|
run_dump_test [file rootname $test]
|
|
}
|
|
|
|
global link_output
|
|
global ld
|
|
|
|
set test_name "NIOS2 Mixed R1 and R2 objects"
|
|
set test mixed1
|
|
|
|
if ![ld_assemble $as "-march=r1 $srcdir/$subdir/${test}a.s" tmpdir/${test}a.o] {
|
|
unresolved "Build mixed1a.o"
|
|
return
|
|
}
|
|
|
|
if ![ld_assemble $as "-march=r2 $srcdir/$subdir/${test}b.s" tmpdir/${test}b.o] {
|
|
unresolved "Build mixed1b.o"
|
|
return
|
|
}
|
|
|
|
if { ![ld_simple_link $ld tmpdir/$test "tmpdir/${test}a.o tmpdir/${test}b.o"] } {
|
|
if [string match "*architecture * is incompatible*" $link_output] {
|
|
pass "$test_name"
|
|
} {
|
|
fail "$test_name"
|
|
}
|
|
}
|