2011-01-19 Yao Qi <yao@codesourcery.com>

* lib/dwarf.exp (dwarf2_support): Change supported targets to a
	positve list.
This commit is contained in:
Yao Qi 2011-01-19 20:38:41 +00:00
parent 810cfdbbaf
commit ec64c9aa23
2 changed files with 14 additions and 9 deletions

View File

@ -1,3 +1,8 @@
2011-01-19 Yao Qi <yao@codesourcery.com>
* lib/dwarf.exp (dwarf2_support): Change supported targets to a
positve list.
2011-01-19 Yao Qi <yao@codesourcery.com>
* gdb.asm/asm-source.exp: Replace ARM target triplet with a

View File

@ -16,15 +16,15 @@
# Return true if the target supports DWARF-2 and uses gas.
# For now pick a sampling of likely targets.
proc dwarf2_support {} {
if {![istarget *-*-linux*]
&& ![istarget *-*-gnu*]
&& ![istarget *-*-elf*]
&& ![istarget *-*-openbsd*]
&& ![istarget arm*-*-eabi*]
&& ![istarget arm*-*-symbianelf*]
&& ![istarget powerpc-*-eabi*]} {
return 0
if {[istarget *-*-linux*]
|| [istarget *-*-gnu*]
|| [istarget *-*-elf*]
|| [istarget *-*-openbsd*]
|| [istarget arm*-*-eabi*]
|| [istarget arm*-*-symbianelf*]
|| [istarget powerpc-*-eabi*]} {
return 1
}
return 1
return 0
}