forked from Imagelibrary/binutils-gdb
* lib/utils-lib.exp (is_elf_format): Merge with gas and ld versions.
This commit is contained in:
@@ -118,41 +118,59 @@ proc default_binutils_assemble_flags { source object asflags } {
|
||||
}
|
||||
}
|
||||
|
||||
#
|
||||
# is_elf_format
|
||||
# true if the object format is known to be ELF
|
||||
# True if the object format is known to be ELF.
|
||||
#
|
||||
proc is_elf_format {} {
|
||||
if { ![istarget *-*-sysv4*] \
|
||||
&& ![istarget *-*-unixware*] \
|
||||
&& ![istarget *-*-elf*] \
|
||||
&& ![istarget *-*-eabi*] \
|
||||
&& ![istarget hppa*64*-*-hpux*] \
|
||||
&& ![istarget ia64-*-hpux*] \
|
||||
&& ![istarget *-*-linux*] \
|
||||
&& ![istarget *-*-irix5*] \
|
||||
&& ![istarget *-*-irix6*] \
|
||||
&& ![istarget *-*-netbsd*] \
|
||||
if { ![istarget *-*-sysv4*]
|
||||
&& ![istarget *-*-unixware*]
|
||||
&& ![istarget *-*-elf*]
|
||||
&& ![istarget *-*-eabi*]
|
||||
&& ![istarget *-*-rtems*]
|
||||
&& ![istarget hppa*64*-*-hpux*]
|
||||
&& ![istarget ia64-*-hpux*]
|
||||
&& ![istarget *-*-linux*]
|
||||
&& ![istarget frv-*-uclinux*]
|
||||
&& ![istarget bfin-*-uclinux]
|
||||
&& ![istarget sh*-*-uclinux*]
|
||||
&& ![istarget *-*-irix5*]
|
||||
&& ![istarget *-*-irix6*]
|
||||
&& ![istarget *-*-netbsd*]
|
||||
&& ![istarget *-*-openbsd*]
|
||||
&& ![istarget *-*-solaris2*] } {
|
||||
return 0
|
||||
}
|
||||
|
||||
if { [istarget *-*-linux*aout*] \
|
||||
|| [istarget *-*-linux*oldld*] } {
|
||||
if { [istarget *-*-linux*aout*]
|
||||
|| [istarget *-*-linux*oldld*]
|
||||
|| [istarget h8500-*-rtems*]
|
||||
|| [istarget i960-*-rtems*]
|
||||
|| [istarget *-*-rtemscoff*] } {
|
||||
return 0
|
||||
}
|
||||
|
||||
if { ![istarget *-*-netbsdelf*] \
|
||||
&& ([istarget *-*-netbsd*aout*] \
|
||||
|| [istarget *-*-netbsdpe*] \
|
||||
|| [istarget arm*-*-netbsd*] \
|
||||
|| [istarget sparc-*-netbsd*] \
|
||||
|| [istarget i*86-*-netbsd*] \
|
||||
|| [istarget m68*-*-netbsd*] \
|
||||
|| [istarget vax-*-netbsd*] \
|
||||
if { ![istarget *-*-netbsdelf*]
|
||||
&& ([istarget *-*-netbsd*aout*]
|
||||
|| [istarget *-*-netbsdpe*]
|
||||
|| [istarget arm*-*-netbsd*]
|
||||
|| [istarget sparc-*-netbsd*]
|
||||
|| [istarget i*86-*-netbsd*]
|
||||
|| [istarget m68*-*-netbsd*]
|
||||
|| [istarget vax-*-netbsd*]
|
||||
|| [istarget ns32k-*-netbsd*]) } {
|
||||
return 0
|
||||
}
|
||||
|
||||
if { [istarget arm-*-openbsd*]
|
||||
|| [istarget i386-*-openbsd\[0-2\].*]
|
||||
|| [istarget i386-*-openbsd3.\[0-2\]]
|
||||
|| [istarget m68*-*-openbsd*]
|
||||
|| [istarget ns32k-*-openbsd*]
|
||||
|| [istarget sparc-*-openbsd\[0-2\].*]
|
||||
|| [istarget sparc-*-openbsd3.\[0-1\]]
|
||||
|| [istarget vax-*-openbsd*] } {
|
||||
return 0
|
||||
}
|
||||
|
||||
return 1
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user