2002-02-02 06:23:34 +01:00
|
|
|
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" }
|
|
|
|
# }
|
|
|
|
}
|
2002-03-09 20:41:11 +01:00
|
|
|
{ "mips*-*-elf" } {
|
2002-02-02 06:23:34 +01:00
|
|
|
set target_list { "mips-sim" }
|
|
|
|
}
|
|
|
|
|
|
|
|
default {
|
|
|
|
set target_list { "unix" }
|
|
|
|
}
|
|
|
|
}
|