Add an unwind_to field to basic blocks, making them Users instead of Values.
[oota-llvm.git] / tools / Makefile
index 703a2e92b4a615cdd5b8999946c620e4a6a2e394..0b98201693eff8cdcfd72ebda9c7de2f65e5a6a0 100644 (file)
@@ -2,8 +2,8 @@
 # 
 #                     The LLVM Compiler Infrastructure
 #
-# This file was developed by the LLVM research group and is distributed under
-# the University of Illinois Open Source License. See LICENSE.TXT for details.
+# This file is distributed under the University of Illinois Open Source
+# License. See LICENSE.TXT for details.
 # 
 ##===----------------------------------------------------------------------===##
 
@@ -17,13 +17,16 @@ PARALLEL_DIRS := llvm-config  \
                  llvm-ld llvmc llvm-prof llvm-link \
                 lli gccas gccld llvm-extract llvm-db llvm2cpp \
                 bugpoint llvm-bcanalyzer llvm-stub
-               
+
 
 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