diff options
Diffstat (limited to 'tools/Makefile')
-rw-r--r-- | tools/Makefile | 17 |
1 files changed, 7 insertions, 10 deletions
diff --git a/tools/Makefile b/tools/Makefile index a296f81..7305f6b 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -15,23 +15,20 @@ OPTIONAL_PARALLEL_DIRS := clang # NOTE: The tools are organized into five groups of four consisting of one # large and three small executables. This is done to minimize memory load # in parallel builds. Please retain this ordering. -PARALLEL_DIRS := llvm-config \ - opt llvm-as llvm-dis \ +DIRS := llvm-config +PARALLEL_DIRS := opt llvm-as llvm-dis \ llc llvm-ranlib llvm-ar llvm-nm \ llvm-ld llvm-prof llvm-link \ lli gccas gccld llvm-extract llvm-db \ bugpoint llvm-bcanalyzer llvm-stub llvmc - include $(LEVEL)/Makefile.config -# only build new lto project on Darwin for now -ifeq ($(OS),Darwin) -PARALLEL_DIRS += lto - -ifdef BINUTILS_INCDIR -PARALLEL_DIRS += gold -endif +ifdef ENABLE_PIC + DIRS += lto + ifdef BINUTILS_INCDIR + DIRS += gold + endif endif include $(LEVEL)/Makefile.common |