From: Anton Korobeynikov Date: Fri, 8 Sep 2006 18:00:43 +0000 (+0000) Subject: Enabling LTO building on Darwin only right now. This probably should be X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=294492b25f9a953e9210e4e1a23465e1b599fef8;p=oota-llvm.git Enabling LTO building on Darwin only right now. This probably should be removed after 'PIC vs non-PIC' problem solution git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30192 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/tools/Makefile b/tools/Makefile index 1c29a3d3697..56f17d8eeef 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -18,7 +18,9 @@ PARALLEL_DIRS := llvm-config \ bugpoint llvm-db llvm-extract \ gccas llvm-bcanalyzer llvm-stub \ gccld llvm2cpp \ - llvm-ld llvmc llvm-prof \ - lto + llvm-ld llvmc llvm-prof +ifeq ($(OS), Darwin) +PARALLEL_DIRS += lto +endif include $(LEVEL)/Makefile.common