mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-20 10:42:21 +00:00
19 lines
352 B
Plaintext
19 lines
352 B
Plaintext
|
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" }
|
||
|
}
|
||
|
}
|