diff options
author | Nick Clifton <nickc@redhat.com> | 2006-10-02 16:53:04 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2006-10-02 16:53:04 +0000 |
commit | 0be14fe08cd1e2f49719e47325574cd3de49ff38 (patch) | |
tree | 918b8017d0da8fcd5b5cf2370737f9d32aa7d115 | |
parent | 041bf30db7ac5628b79e7c44fcc53a7657061a89 (diff) | |
download | gdb-0be14fe08cd1e2f49719e47325574cd3de49ff38.zip gdb-0be14fe08cd1e2f49719e47325574cd3de49ff38.tar.gz gdb-0be14fe08cd1e2f49719e47325574cd3de49ff38.tar.bz2 |
* ld-fastcall/fastcall.exp: Add x86_64-pc-mingw64 as valid target.
* ld-pe/pe.exp: Likewise.
* lib/ld-lib.exp ( is_pecoff_format): Accept x86_64-pc-mingw64.
-rw-r--r-- | ld/testsuite/ChangeLog | 6 | ||||
-rw-r--r-- | ld/testsuite/ld-fastcall/fastcall.exp | 1 | ||||
-rw-r--r-- | ld/testsuite/ld-pe/pe.exp | 7 | ||||
-rw-r--r-- | ld/testsuite/lib/ld-lib.exp | 2 |
4 files changed, 13 insertions, 3 deletions
diff --git a/ld/testsuite/ChangeLog b/ld/testsuite/ChangeLog index ab36248..7b38050 100644 --- a/ld/testsuite/ChangeLog +++ b/ld/testsuite/ChangeLog @@ -1,3 +1,9 @@ +2006-10-02 Kai Tietz <Kai.Tietz@onevision.com> + + * ld-fastcall/fastcall.exp: Add x86_64-pc-mingw64 as valid target. + * ld-pe/pe.exp: Likewise. + * lib/ld-lib.exp ( is_pecoff_format): Accept x86_64-pc-mingw64. + 2006-09-29 Kaz Kojima <kkojima@rr.iij4u.or.jp> * ld-sh/tlspic-2.d: Update. diff --git a/ld/testsuite/ld-fastcall/fastcall.exp b/ld/testsuite/ld-fastcall/fastcall.exp index 30f0575..b613625 100644 --- a/ld/testsuite/ld-fastcall/fastcall.exp +++ b/ld/testsuite/ld-fastcall/fastcall.exp @@ -23,6 +23,7 @@ if {![istarget "i*86-*-*"] && ![istarget "x86_64-*-mingw64*"] } { if { !([istarget "i*86-*-*pe*"] && ![istarget "i*86-*-opensd*"]) \ && ![istarget "i*86-*-cygwin*"] \ + && ![istarget "x86_64-*-mingw64"] \ && ![istarget "i*86-*-mingw*"] } { return } diff --git a/ld/testsuite/ld-pe/pe.exp b/ld/testsuite/ld-pe/pe.exp index bd25508..53440d1 100644 --- a/ld/testsuite/ld-pe/pe.exp +++ b/ld/testsuite/ld-pe/pe.exp @@ -18,8 +18,11 @@ #
# This test can only be run on PE/COFF platforms that support .secrel32.
-if { ![istarget i*86-*-cygwin*] && ![istarget i*86-*-pe]
- && ![istarget i*86-*-mingw*] && ![istarget arm-wince-pe] } {
+if { ![istarget i*86-*-cygwin*]
+ && ![istarget i*86-*-pe]
+ && ![istarget i*86-*-mingw*]
+ && ![istarget x86_64-*-mingw64*]
+ && ![istarget arm-wince-pe] } {
return
}
diff --git a/ld/testsuite/lib/ld-lib.exp b/ld/testsuite/lib/ld-lib.exp index 566845f..4fbe2af 100644 --- a/ld/testsuite/lib/ld-lib.exp +++ b/ld/testsuite/lib/ld-lib.exp @@ -434,7 +434,7 @@ proc is_aout_format {} { # True if the object format is known to be PE COFF. # proc is_pecoff_format {} { - if { ![istarget *-*-mingw32*] \ + if { ![istarget *-*-mingw*] \ && ![istarget *-*-cygwin*] \ && ![istarget *-*-pe*] } { return 0 |