[llvm-commits] [test-suite] r51353 - in /test-suite/trunk/External/SPEC/CFP2006: 444.namd/Makefile 447.dealII/Makefile 450.soplex/Makefile 453.povray/Makefile
Dale Johannesen
dalej at apple.com
Tue May 20 14:53:45 PDT 2008
Author: johannes
Date: Tue May 20 16:53:44 2008
New Revision: 51353
URL: http://llvm.org/viewvc/llvm-project?rev=51353&view=rev
Log:
Move LDFLAGS definition ahead of include that uses it.
Modified:
test-suite/trunk/External/SPEC/CFP2006/444.namd/Makefile
test-suite/trunk/External/SPEC/CFP2006/447.dealII/Makefile
test-suite/trunk/External/SPEC/CFP2006/450.soplex/Makefile
test-suite/trunk/External/SPEC/CFP2006/453.povray/Makefile
Modified: test-suite/trunk/External/SPEC/CFP2006/444.namd/Makefile
URL: http://llvm.org/viewvc/llvm-project/test-suite/trunk/External/SPEC/CFP2006/444.namd/Makefile?rev=51353&r1=51352&r2=51353&view=diff
==============================================================================
--- test-suite/trunk/External/SPEC/CFP2006/444.namd/Makefile (original)
+++ test-suite/trunk/External/SPEC/CFP2006/444.namd/Makefile Tue May 20 16:53:44 2008
@@ -8,10 +8,11 @@
FP_ABSTOLERANCE = 0.00001
-include ../../Makefile.spec2006
RUN_OPTIONS = --input namd.input --iterations 1 --output namd.out
STDOUT_FILENAME := namd.out
LDFLAGS = -lstdc++ -lm
LIBS = -lm
+
+include ../../Makefile.spec2006
Modified: test-suite/trunk/External/SPEC/CFP2006/447.dealII/Makefile
URL: http://llvm.org/viewvc/llvm-project/test-suite/trunk/External/SPEC/CFP2006/447.dealII/Makefile?rev=51353&r1=51352&r2=51353&view=diff
==============================================================================
--- test-suite/trunk/External/SPEC/CFP2006/447.dealII/Makefile (original)
+++ test-suite/trunk/External/SPEC/CFP2006/447.dealII/Makefile Tue May 20 16:53:44 2008
@@ -13,8 +13,6 @@
-DBOOST_DISABLE_THREADS \
-I$(SPEC_BENCH_DIR)/src/include
-include ../../Makefile.spec2006
-
ifeq ($(RUN_TYPE),test)
RUN_OPTIONS := 8
else
@@ -25,3 +23,5 @@
LDFLAGS = -lstdc++ -lm
LIBS = -lm
+
+include ../../Makefile.spec2006
Modified: test-suite/trunk/External/SPEC/CFP2006/450.soplex/Makefile
URL: http://llvm.org/viewvc/llvm-project/test-suite/trunk/External/SPEC/CFP2006/450.soplex/Makefile?rev=51353&r1=51352&r2=51353&view=diff
==============================================================================
--- test-suite/trunk/External/SPEC/CFP2006/450.soplex/Makefile (original)
+++ test-suite/trunk/External/SPEC/CFP2006/450.soplex/Makefile Tue May 20 16:53:44 2008
@@ -8,8 +8,6 @@
FP_ABSTOLERANCE = 1.0e-5
-include ../../Makefile.spec2006
-
CPPFLAGS += -DNDEBUG
ifeq ($(RUN_TYPE),test)
@@ -24,3 +22,5 @@
LDFLAGS = -lstdc++ -lm
LIBS = -lstdc++ -lm
+
+include ../../Makefile.spec2006
Modified: test-suite/trunk/External/SPEC/CFP2006/453.povray/Makefile
URL: http://llvm.org/viewvc/llvm-project/test-suite/trunk/External/SPEC/CFP2006/453.povray/Makefile?rev=51353&r1=51352&r2=51353&view=diff
==============================================================================
--- test-suite/trunk/External/SPEC/CFP2006/453.povray/Makefile (original)
+++ test-suite/trunk/External/SPEC/CFP2006/453.povray/Makefile Tue May 20 16:53:44 2008
@@ -8,8 +8,6 @@
FP_ABSTOLERANCE = 0
-include ../../Makefile.spec2006
-
ifeq ($(RUN_TYPE),test)
FP_TOLERANCE = 0.0002
RUN_OPTIONS = SPEC-benchmark-test
@@ -22,3 +20,6 @@
LDFLAGS = -lstdc++ -lm
LIBS = -lstdc++ -lm
+
+include ../../Makefile.spec2006
+
More information about the llvm-commits
mailing list