aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoseph Myers <joseph@codesourcery.com>2009-02-06 16:56:12 +0000
committerJoseph Myers <joseph@codesourcery.com>2009-02-06 16:56:12 +0000
commit5a7c5e86304d6298cbeee81f07b626b194980073 (patch)
tree7a0a9167135455be46094e958722ef310cec2a99
parent2d0f9ad979091f0f49a4a5dc3d4536f3b5071707 (diff)
downloadgdb-5a7c5e86304d6298cbeee81f07b626b194980073.zip
gdb-5a7c5e86304d6298cbeee81f07b626b194980073.tar.gz
gdb-5a7c5e86304d6298cbeee81f07b626b194980073.tar.bz2
* lib/ld-lib.exp (check_gc_sections_available): Return 0 for
*-*-mingw*.
-rw-r--r--ld/testsuite/ChangeLog5
-rw-r--r--ld/testsuite/lib/ld-lib.exp3
2 files changed, 7 insertions, 1 deletions
diff --git a/ld/testsuite/ChangeLog b/ld/testsuite/ChangeLog
index c31a0c9..e579742 100644
--- a/ld/testsuite/ChangeLog
+++ b/ld/testsuite/ChangeLog
@@ -1,3 +1,8 @@
+2009-02-06 Joseph Myers <joseph@codesourcery.com>
+
+ * lib/ld-lib.exp (check_gc_sections_available): Return 0 for
+ *-*-mingw*.
+
2009-02-05 Joseph Myers <joseph@codesourcery.com>
* ld-arm/arm-elf.exp (armeabitests): Restore thumb2-b-interwork.
diff --git a/ld/testsuite/lib/ld-lib.exp b/ld/testsuite/lib/ld-lib.exp
index 15ed41d..05cdf1f 100644
--- a/ld/testsuite/lib/ld-lib.exp
+++ b/ld/testsuite/lib/ld-lib.exp
@@ -1592,7 +1592,8 @@ proc check_gc_sections_available { } {
# advertised by ld's options.
if { [istarget alpha*-*-*]
|| [istarget mep-*-*]
- || [istarget ia64-*-*] } {
+ || [istarget ia64-*-*]
+ || [istarget *-*-mingw*] } {
set gc_sections_available_saved 0
return 0
}