diff options
author | Chris Lattner <sabre@nondot.org> | 2010-07-20 20:55:57 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-07-20 20:55:57 +0000 |
commit | 9289f93153de77e98959a61fc057556bc56c5886 (patch) | |
tree | 5a37f9b7e5f71faca0f13dad6cdda2233ea3b088 /llvm/tools | |
parent | 0535f00eb6b01e6368466347fbaff1f86ee9edbd (diff) | |
download | bcm5719-llvm-9289f93153de77e98959a61fc057556bc56c5886.tar.gz bcm5719-llvm-9289f93153de77e98959a61fc057556bc56c5886.zip |
fix DISABLE_EDIS
llvm-svn: 108925
Diffstat (limited to 'llvm/tools')
-rw-r--r-- | llvm/tools/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/tools/Makefile b/llvm/tools/Makefile index 7f0f1df7146..6e23dac111e 100644 --- a/llvm/tools/Makefile +++ b/llvm/tools/Makefile @@ -16,7 +16,7 @@ OPTIONAL_PARALLEL_DIRS := clang # large and three small executables. This is done to minimize memory load # in parallel builds. Please retain this ordering. DIRS := llvm-config -PARALLEL_DIRS := opt llvm-as llvm-dis edis \ +PARALLEL_DIRS := opt llvm-as llvm-dis \ llc llvm-ranlib llvm-ar llvm-nm \ llvm-ld llvm-prof llvm-link \ lli llvm-extract llvm-mc \ @@ -49,7 +49,7 @@ ifeq ($(ENABLE_PIC),1) # LLVM is being built PIC on platforms that support dylibs. ifneq ($(DISABLE_EDIS),1) ifneq ($(filter $(TARGETS_TO_BUILD), X86 ARM),) - PARALLEL_DIRS := $(filter-out edis, $(PARALLEL_DIRS)) + PARALLEL_DIRS += edis endif endif endif |