summaryrefslogtreecommitdiff
path: root/tools/Makefile
diff options
context:
space:
mode:
authorNick Kledzik <kledzik@apple.com>2008-02-29 19:31:29 +0000
committerNick Kledzik <kledzik@apple.com>2008-02-29 19:31:29 +0000
commit1f008a88f9dbdfcd07344e2180ff0c3d39739812 (patch)
treed3f1ae5c7a2f2a5dd96e91807acb3112f271c467 /tools/Makefile
parentddb84f5c97c25e201fd53172e0f0551d30ec4f04 (diff)
downloadllvm-1f008a88f9dbdfcd07344e2180ff0c3d39739812.tar.gz
llvm-1f008a88f9dbdfcd07344e2180ff0c3d39739812.tar.bz2
llvm-1f008a88f9dbdfcd07344e2180ff0c3d39739812.tar.xz
stop building lto on all platforms. Start building lto2 on Darwin
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@47762 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/Makefile')
-rw-r--r--tools/Makefile9
1 files changed, 6 insertions, 3 deletions
diff --git a/tools/Makefile b/tools/Makefile
index 9f62ff74dc..dc9ac44064 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