Add vxworks and windiss to supported targets. is_elf_target excludes
them as a hack to work around multiple other elf test failures.
On these targets, fixes
FAIL: GNU attributes v1/v2: no support for directive .gnu_attribute
# Whether a target supports Object Attributes v1
proc supports_oa_v1 {} {
- if { ! [is_elf_format] } {
+ if { ![is_elf_format]
+ && ![istarget *-*-vxworks*] && ![istarget *-*-windiss*] } {
return 0
}
if { [istarget arc-*-*]
# Whether a target supports Object Attributes v2
proc supports_oa_v2 {} {
- if { ! [is_elf_format] } {
+ if { ![is_elf_format]
+ && ![istarget *-*-vxworks*] && ![istarget *-*-windiss*] } {
return 0
}
if { [istarget aarch64*-*-*] } {