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