aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tools/Makefile9
1 files changed, 6 insertions, 3 deletions
diff --git a/tools/Makefile b/tools/Makefile
index 9f62ff7..dc9ac44 100644
--- a/tools/Makefile
+++ b/tools/Makefile
@@ -21,9 +21,12 @@ PARALLEL_DIRS := llvm-config \
include $(LEVEL)/Makefile.config
-# Disable liblto on Windows until compatability is determined.
-ifneq ($(OS), MingW)
-PARALLEL_DIRS += lto
+# Disable liblto as it is going away
+#PARALLEL_DIRS += lto
+
+# only build new lto project on Darwin for now
+ifeq ($(OS),Darwin)
+PARALLEL_DIRS += lto2
endif
include $(LEVEL)/Makefile.common