[llvm-commits] CVS: llvm-test/MultiSource/Applications/Makefile
John Criswell
criswell at cs.uiuc.edu
Fri Sep 10 15:08:16 PDT 2004
Changes in directory llvm-test/MultiSource/Applications:
Makefile updated: 1.14 -> 1.15
---
Log message:
Enabled hexxagon for all platforms except Darwin (now ftime(). Tsk, tsk).
Keep Obsequi as a Linux only program, as it appears to have been written with
only Linux in mind.
Both of these issues can be fixed, but it will take more time.
---
Diffs of the changes: (+8 -1)
Index: llvm-test/MultiSource/Applications/Makefile
diff -u llvm-test/MultiSource/Applications/Makefile:1.14 llvm-test/MultiSource/Applications/Makefile:1.15
--- llvm-test/MultiSource/Applications/Makefile:1.14 Fri Sep 10 15:05:56 2004
+++ llvm-test/MultiSource/Applications/Makefile Fri Sep 10 17:08:03 2004
@@ -5,8 +5,15 @@
include $(LEVEL)/Makefile.common
PARALLEL_DIRS = Burg aha sgefa siod lambda-0.1.3 d spiff hbd treecc kimwitu++
+
+# All platforms except Darwin should be able to handle hexxagon
+ifneq ($(OS),Darwin)
+PARALLEL_DIRS += hexxagon
+endif
+
+# Obsequi uses Linux-only features; need to fix that
ifeq ($(OS),Linux)
-PARALLEL_DIRS += obsequi hexxagon
+PARALLEL_DIRS += obsequi
endif
include $(LEVEL)/Makefile.programs
More information about the llvm-commits
mailing list