aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/lib/gcc.exp
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/lib/gcc.exp')
-rw-r--r--gcc/testsuite/lib/gcc.exp7
1 files changed, 6 insertions, 1 deletions
diff --git a/gcc/testsuite/lib/gcc.exp b/gcc/testsuite/lib/gcc.exp
index ac4dc35e8e9..a27b3583d90 100644
--- a/gcc/testsuite/lib/gcc.exp
+++ b/gcc/testsuite/lib/gcc.exp
@@ -143,7 +143,7 @@ proc gcc_target_compile { source dest type options } {
if [target_info exists gcc,no_trampolines] {
lappend options "additional_flags=-DNO_TRAMPOLINES"
}
- if [target_info exists gcc,no_label_values] {
+ if { 1 } {
lappend options "additional_flags=-DNO_LABEL_VALUES"
}
# TOOL_OPTIONS must come first, so that it doesn't override testcase
@@ -154,6 +154,11 @@ proc gcc_target_compile { source dest type options } {
if [target_info exists gcc,timeout] {
lappend options "timeout=[target_info gcc,timeout]"
}
+ # APPLE LOCAL begin testsuite multiply defined
+ if [ istarget *-*-darwin* ] {
+ lappend options "ldflags=-Wl,-multiply_defined,suppress"
+ }
+ # APPLE LOCAL end testsuite multiply defined
lappend options "compiler=$GCC_UNDER_TEST"
set options [dg-additional-files-options $options $source]
return [target_compile $source $dest $type $options]