aboutsummaryrefslogtreecommitdiff
path: root/ld
diff options
context:
space:
mode:
authorJason Thorpe <thorpej@netbsd.org>2002-12-10 15:54:23 +0000
committerJason Thorpe <thorpej@netbsd.org>2002-12-10 15:54:23 +0000
commite06d9b458937264621d6ec81ccf9a6bab3337cac (patch)
treecd7a12d3881e95bd805253493f84db6b590899f1 /ld
parent1e5e54006d7db345069fa1eff2b2cfbd9a722981 (diff)
downloadfsf-binutils-gdb-e06d9b458937264621d6ec81ccf9a6bab3337cac.zip
fsf-binutils-gdb-e06d9b458937264621d6ec81ccf9a6bab3337cac.tar.gz
fsf-binutils-gdb-e06d9b458937264621d6ec81ccf9a6bab3337cac.tar.bz2
* lib/ld-lib.exp (is_elf_format): Match NetBSD ELF targets.
Diffstat (limited to 'ld')
-rw-r--r--ld/testsuite/ChangeLog4
-rw-r--r--ld/testsuite/lib/ld-lib.exp13
2 files changed, 17 insertions, 0 deletions
diff --git a/ld/testsuite/ChangeLog b/ld/testsuite/ChangeLog
index 4226307..58d4eb9 100644
--- a/ld/testsuite/ChangeLog
+++ b/ld/testsuite/ChangeLog
@@ -1,3 +1,7 @@
+2002-12-10 Jason Thorpe <thorpej@wasabisystems.com>
+
+ * lib/ld-lib.exp (is_elf_format): Match NetBSD ELF targets.
+
2002-12-03 Nick Clifton <nickc@redhat.com>
* ld-powerpc/powerpc.exp (ppcelftests): Add apuinfo merging
diff --git a/ld/testsuite/lib/ld-lib.exp b/ld/testsuite/lib/ld-lib.exp
index 4217636..9a0b739 100644
--- a/ld/testsuite/lib/ld-lib.exp
+++ b/ld/testsuite/lib/ld-lib.exp
@@ -344,6 +344,7 @@ proc is_elf_format {} {
&& ![istarget *-*-linux*] \
&& ![istarget *-*-irix5*] \
&& ![istarget *-*-irix6*] \
+ && ![istarget *-*-netbsd*] \
&& ![istarget *-*-solaris2*] } {
return 0
}
@@ -352,6 +353,18 @@ proc is_elf_format {} {
|| [istarget *-*-linux*oldld*] } {
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*] \
+ || [istarget ns32k-*-netbsd*]) } {
+ return 0
+ }
return 1
}