[llvm-commits] CVS: llvm-test/External/SPEC/CFP95/Makefile

Misha Brukman brukman at cs.uiuc.edu
Thu Oct 7 14:53:48 PDT 2004



Changes in directory llvm-test/External/SPEC/CFP95:

Makefile updated: 1.1 -> 1.2
---
Log message:

Condition compilation of these Fortran benchmarks on USE_F2C


---
Diffs of the changes:  (+9 -3)

Index: llvm-test/External/SPEC/CFP95/Makefile
diff -u llvm-test/External/SPEC/CFP95/Makefile:1.1 llvm-test/External/SPEC/CFP95/Makefile:1.2
--- llvm-test/External/SPEC/CFP95/Makefile:1.1	Wed Oct  6 15:18:17 2004
+++ llvm-test/External/SPEC/CFP95/Makefile	Thu Oct  7 16:53:38 2004
@@ -1,4 +1,8 @@
 LEVEL = ../../..
+include $(LEVEL)/Makefile.config
+
+# We can only compile these SPEC benchmarks with F2C
+ifdef USE_F2C
 PARALLEL_DIRS := \
   101.tomcatv    \
   102.swim       \
@@ -8,9 +12,11 @@
   110.applu      \
   145.fpppp      \
   146.wave5
+else
+PARALLEL_DIRS :=
+endif
 
-# These are REALLY broken: the output of f2c does not compile
-#  125.turb3d     \
-#  141.apsi       \
+# Broken due to f2c: the output of f2c does not compile natively
+#  125.turb3d, 141.apsi
 
 include $(LEVEL)/External/Makefile.external






More information about the llvm-commits mailing list