[llvm-commits] [test-suite] r58679 - /test-suite/trunk/Makefile.programs
Bill Wendling
isanbard at gmail.com
Mon Nov 3 19:52:29 PST 2008
Author: void
Date: Mon Nov 3 21:52:29 2008
New Revision: 58679
URL: http://llvm.org/viewvc/llvm-project?rev=58679&view=rev
Log:
Stack protectors aren't Darwin-specific. However, other platforms need to add
the -lssp library or they'll fail.
Modified:
test-suite/trunk/Makefile.programs
Modified: test-suite/trunk/Makefile.programs
URL: http://llvm.org/viewvc/llvm-project/test-suite/trunk/Makefile.programs?rev=58679&r1=58678&r2=58679&view=diff
==============================================================================
--- test-suite/trunk/Makefile.programs (original)
+++ test-suite/trunk/Makefile.programs Mon Nov 3 21:52:29 2008
@@ -231,7 +231,11 @@
LLCBETAOPTION := -sched=simple
endif
ifeq ($(ARCH),x86)
+ifeq ($(OS),Darwin)
LLCBETAOPTION := -enable-stack-protector=2
+else
+LLCBETAOPTION := -fast-isel
+endif
#-fast-isel
#-aggressive-remat
#-machine-licm
More information about the llvm-commits
mailing list