[llvm-commits] CVS: llvm-test/MultiSource/Applications/Makefile
Brian Gaeke
gaeke at cs.uiuc.edu
Wed Oct 6 10:28:17 PDT 2004
Changes in directory llvm-test/MultiSource/Applications:
Makefile updated: 1.15 -> 1.16
---
Log message:
Disable kimwitu++ on solaris
---
Diffs of the changes: (+6 -1)
Index: llvm-test/MultiSource/Applications/Makefile
diff -u llvm-test/MultiSource/Applications/Makefile:1.15 llvm-test/MultiSource/Applications/Makefile:1.16
--- llvm-test/MultiSource/Applications/Makefile:1.15 Fri Sep 10 17:08:03 2004
+++ llvm-test/MultiSource/Applications/Makefile Wed Oct 6 12:28:02 2004
@@ -4,7 +4,7 @@
include $(LEVEL)/Makefile.common
-PARALLEL_DIRS = Burg aha sgefa siod lambda-0.1.3 d spiff hbd treecc kimwitu++
+PARALLEL_DIRS = Burg aha sgefa siod lambda-0.1.3 d spiff hbd treecc
# All platforms except Darwin should be able to handle hexxagon
ifneq ($(OS),Darwin)
@@ -16,4 +16,9 @@
PARALLEL_DIRS += obsequi
endif
+# kimwitu++ uses multi-byte chars, not available on sparc/solaris
+ifneq ($(OS),SunOS)
+PARALLEL_DIRS += kimwitu++
+endif
+
include $(LEVEL)/Makefile.programs
More information about the llvm-commits
mailing list