blob: 0892afa3a5278754599ce95f6c3b09d2fb830af1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
global target_list
case "$target_triplet" in {
{ "powerpc*-*eabi*" } {
# if { [info exists tool] && $tool == "gcc" } {
# set target_list { "powerpc-sim{,-fpic}" }
# } else {
set target_list { "powerpc-sim" }
# }
}
{ "mips*-*-elf" } {
set target_list { "mips-sim" }
}
default {
set target_list { "unix" }
}
}
|