stop building lto on all platforms. Start building lto2 on Darwin

llvm-svn: 47762
This commit is contained in:
Nick Kledzik 2008-02-29 19:31:29 +00:00
parent 618ba73288
commit d5a2f4aee5
1 changed files with 6 additions and 3 deletions

View 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