[llvm-commits] [test-suite] r138480 - /test-suite/trunk/External/SPEC/CINT2000/176.gcc/Makefile

Cameron Zwarich zwarich at apple.com
Wed Aug 24 14:03:07 PDT 2011


Author: zwarich
Date: Wed Aug 24 16:03:07 2011
New Revision: 138480

URL: http://llvm.org/viewvc/llvm-project?rev=138480&view=rev
Log:
Make 176.gcc work on Darwin platforms with a lower default stack size.

Modified:
    test-suite/trunk/External/SPEC/CINT2000/176.gcc/Makefile

Modified: test-suite/trunk/External/SPEC/CINT2000/176.gcc/Makefile
URL: http://llvm.org/viewvc/llvm-project/test-suite/trunk/External/SPEC/CINT2000/176.gcc/Makefile?rev=138480&r1=138479&r2=138480&view=diff
==============================================================================
--- test-suite/trunk/External/SPEC/CINT2000/176.gcc/Makefile (original)
+++ test-suite/trunk/External/SPEC/CINT2000/176.gcc/Makefile Wed Aug 24 16:03:07 2011
@@ -21,6 +21,10 @@
   CPPFLAGS += -DHOST_WORDS_BIG_ENDIAN
 endif
 
+ifeq ($(TARGET_OS),Darwin)
+  LDFLAGS += -Xlinker -stack_size -Xlinker 0x800000
+endif
+
 ifeq ($(ARCH),Sparc)
   ## SPEC portability note for GCC says to use these flags and cross fingers:
   CPPFLAGS += -DSPEC_CPU2000_LP64





More information about the llvm-commits mailing list