OSDN Git Service

stop building lto on all platforms. Start building lto2 on Darwin
authorNick Kledzik <kledzik@apple.com>
Fri, 29 Feb 2008 19:31:29 +0000 (19:31 +0000)
committerNick Kledzik <kledzik@apple.com>
Fri, 29 Feb 2008 19:31:29 +0000 (19:31 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@47762 91177308-0d34-0410-b5e6-96231b3b80d8

tools/Makefile

index 9f62ff7..dc9ac44 100644 (file)
@@ -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