[llvm-commits] CVS: llvm-test/External/SPEC/CFP2006/Makefile
Evan Cheng
evan.cheng at apple.com
Thu Jan 4 23:19:12 PST 2007
Changes in directory llvm-test/External/SPEC/CFP2006:
Makefile updated: 1.3 -> 1.4
---
Log message:
Filter out Fortran tests if fortran compiler isn't available.
---
Diffs of the changes: (+22 -5)
Makefile | 27 ++++++++++++++++++++++-----
1 files changed, 22 insertions(+), 5 deletions(-)
Index: llvm-test/External/SPEC/CFP2006/Makefile
diff -u llvm-test/External/SPEC/CFP2006/Makefile:1.3 llvm-test/External/SPEC/CFP2006/Makefile:1.4
--- llvm-test/External/SPEC/CFP2006/Makefile:1.3 Thu Sep 7 19:59:14 2006
+++ llvm-test/External/SPEC/CFP2006/Makefile Fri Jan 5 01:18:45 2007
@@ -6,21 +6,38 @@
LEVEL = ../../..
+## C Programs
PARALLEL_DIRS := \
+ 433.milc \
+ 444.namd \
+ 447.dealII \
+ 470.lbm
+
+ifdef USE_F95
+PARALLEL_DIRS += \
410.bwaves \
416.gamess \
- 433.milc \
434.zeusmp \
435.gromacs \
436.cactusADM \
437.leslie3d \
- 444.namd \
- 447.dealII \
454.calculix \
459.GemsFDTD \
- 470.lbm \
481.wrf
-
+else
+ifdef USE_F2C
+PARALLEL_DIRS += \
+ 410.bwaves \
+ 416.gamess \
+ 434.zeusmp \
+ 435.gromacs \
+ 436.cactusADM \
+ 437.leslie3d \
+ 454.calculix \
+ 459.GemsFDTD \
+ 481.wrf
+endif
+endif # End USE_F95
# These compile but need other things to run:
# 450.soplex - enter.cc:535, works at -O0, not at -O2
More information about the llvm-commits
mailing list