mirror of
git://gcc.gnu.org/git/gcc.git
synced 2024-12-21 01:40:04 +08:00
5ffc350051
From-SVN: r49432
19 lines
349 B
Plaintext
19 lines
349 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" }
|
|
}
|
|
}
|