diff options
author | Nick Clifton <nickc@redhat.com> | 2007-01-08 17:21:50 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2007-01-08 17:21:50 +0000 |
commit | 42037fe5bbb1bc401de372fca49768eeef2c21dc (patch) | |
tree | 8cf3daeabc86ea33e51a586928fd693df91393bd /ld/testsuite/ld-scripts | |
parent | f9967789c6c7c657c099ff6526640d1cc2c36032 (diff) | |
download | gdb-42037fe5bbb1bc401de372fca49768eeef2c21dc.zip gdb-42037fe5bbb1bc401de372fca49768eeef2c21dc.tar.gz gdb-42037fe5bbb1bc401de372fca49768eeef2c21dc.tar.bz2 |
Renamed target x86_64-*-mingw64 to x86_64-*-mingw*.
Diffstat (limited to 'ld/testsuite/ld-scripts')
-rw-r--r-- | ld/testsuite/ld-scripts/align.exp | 4 | ||||
-rw-r--r-- | ld/testsuite/ld-scripts/defined.exp | 2 | ||||
-rw-r--r-- | ld/testsuite/ld-scripts/provide.exp | 2 | ||||
-rw-r--r-- | ld/testsuite/ld-scripts/weak.exp | 4 |
4 files changed, 6 insertions, 6 deletions
diff --git a/ld/testsuite/ld-scripts/align.exp b/ld/testsuite/ld-scripts/align.exp index 25d4d3e..8c97d3b 100644 --- a/ld/testsuite/ld-scripts/align.exp +++ b/ld/testsuite/ld-scripts/align.exp @@ -30,10 +30,10 @@ if ![ld_assemble $as $srcdir/$subdir/align.s tmpdir/align.o] { } # Doesn't work on PECOFF, appears to be a genuine bug. -# mingw64 targets need to set the image base to 0 to avoid auto image-basing. +# mingw on x86_64 targets need to set the image base to 0 to avoid auto image-basing. global LDFLAGS set saved_LDFLAGS "$LDFLAGS" -if [istarget "*-*-mingw64*"] then { +if [istarget "x86_64-*-mingw*"] then { set LDFLAGS "$LDFLAGS --image-base 0" } else { if [is_pecoff_format] { diff --git a/ld/testsuite/ld-scripts/defined.exp b/ld/testsuite/ld-scripts/defined.exp index d02b909..13e8d5a 100644 --- a/ld/testsuite/ld-scripts/defined.exp +++ b/ld/testsuite/ld-scripts/defined.exp @@ -27,7 +27,7 @@ if ![ld_assemble $as $srcdir/$subdir/defined.s tmpdir/def.o] { global LDFLAGS set saved_LDFLAGS "$LDFLAGS" -if [istarget "*-*-mingw64*"] then { +if [istarget "x86_64-*-mingw*"] then { set LDFLAGS "$LDFLAGS --image-base 0" } diff --git a/ld/testsuite/ld-scripts/provide.exp b/ld/testsuite/ld-scripts/provide.exp index 7d755a0..4691597 100644 --- a/ld/testsuite/ld-scripts/provide.exp +++ b/ld/testsuite/ld-scripts/provide.exp @@ -31,7 +31,7 @@ if {[istarget "rs6000-*-aix*"] || [is_aout_format]} { global LDFLAGS set saved_LDFLAGS "$LDFLAGS" -if [istarget "*-*-mingw64*"] then { +if [istarget "x86_64-*-mingw*"] then { set LDFLAGS "$LDFLAGS --image-base 0" } diff --git a/ld/testsuite/ld-scripts/weak.exp b/ld/testsuite/ld-scripts/weak.exp index 9ea9ff6..c70bbf2 100644 --- a/ld/testsuite/ld-scripts/weak.exp +++ b/ld/testsuite/ld-scripts/weak.exp @@ -29,7 +29,7 @@ if {! [is_elf_format] && ! [is_pecoff_format]} { # Weak symbols are broken for non-i386 PE targets. if {! [istarget i?86-*-*]} { setup_xfail *-*-pe* - setup_xfail *-*-mingw64* + setup_xfail x86_64-*-mingw* } # hppa64 and or32 are incredibly broken @@ -44,7 +44,7 @@ if {! [ld_assemble $as $srcdir/$subdir/weak1.s tmpdir/weak1.o] global LDFLAGS set saved_LDFLAGS "$LDFLAGS" -if [istarget "*-*-mingw64*"] then { +if [istarget "x86_64-*-mingw*"] then { set LDFLAGS "$LDFLAGS --image-base 0" } |