[llvm-commits] CVS: llvm-test/SingleSource/UnitTests/Makefile
Chris Lattner
lattner at cs.uiuc.edu
Sun Apr 9 00:18:35 PDT 2006
Changes in directory llvm-test/SingleSource/UnitTests:
Makefile updated: 1.6 -> 1.7
---
Log message:
Don't run vector tests if we just have llvmgcc3
---
Diffs of the changes: (+9 -2)
Makefile | 11 +++++++++--
1 files changed, 9 insertions(+), 2 deletions(-)
Index: llvm-test/SingleSource/UnitTests/Makefile
diff -u llvm-test/SingleSource/UnitTests/Makefile:1.6 llvm-test/SingleSource/UnitTests/Makefile:1.7
--- llvm-test/SingleSource/UnitTests/Makefile:1.6 Wed Mar 22 00:14:10 2006
+++ llvm-test/SingleSource/UnitTests/Makefile Sun Apr 9 02:18:21 2006
@@ -1,6 +1,13 @@
# SingleSource/UnitTests/Makefile
-
-DIRS = Vector SetjmpLongjmp
LEVEL = ../..
+include $(LEVEL)/Makefile.config
+
+DIRS := SetjmpLongjmp
+
+# llvm-gcc3 does not support any vector tests.
+ifneq ($(LLVMGCC_MAJVERS),3)
+DIRS += Vector
+endif
+
include $(LEVEL)/SingleSource/Makefile.singlesrc
More information about the llvm-commits
mailing list