1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 19:23:23 +01:00

fix DISABLE_EDIS

llvm-svn: 108925
This commit is contained in:
Chris Lattner 2010-07-20 20:55:57 +00:00
parent b1d00d7c93
commit c37155ffb7

View File

@ -16,7 +16,7 @@ OPTIONAL_PARALLEL_DIRS := clang
# large and three small executables. This is done to minimize memory load # large and three small executables. This is done to minimize memory load
# in parallel builds. Please retain this ordering. # in parallel builds. Please retain this ordering.
DIRS := llvm-config 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 \ llc llvm-ranlib llvm-ar llvm-nm \
llvm-ld llvm-prof llvm-link \ llvm-ld llvm-prof llvm-link \
lli llvm-extract llvm-mc \ lli llvm-extract llvm-mc \
@ -49,7 +49,7 @@ ifeq ($(ENABLE_PIC),1)
# LLVM is being built PIC on platforms that support dylibs. # LLVM is being built PIC on platforms that support dylibs.
ifneq ($(DISABLE_EDIS),1) ifneq ($(DISABLE_EDIS),1)
ifneq ($(filter $(TARGETS_TO_BUILD), X86 ARM),) ifneq ($(filter $(TARGETS_TO_BUILD), X86 ARM),)
PARALLEL_DIRS := $(filter-out edis, $(PARALLEL_DIRS)) PARALLEL_DIRS += edis
endif endif
endif endif
endif endif