forked from OSchip/llvm-project
don't build edis if the x86 target isn't enabld.
llvm-svn: 97268
This commit is contained in:
parent
94fa92b441
commit
134a9dc114
|
@ -44,4 +44,9 @@ ifeq ($(TARGET_OS), $(filter $(TARGET_OS), Cygwin MingW))
|
|||
DIRS := $(filter-out lto gold, $(DIRS))
|
||||
endif
|
||||
|
||||
# Only build edis if X86 target support is enabled.
|
||||
ifeq ($(filter $(TARGETS_TO_BUILD), X86),)
|
||||
PARALLEL_DIRS := $(filter-out edis, $(PARALLEL_DIRS))
|
||||
endif
|
||||
|
||||
include $(LEVEL)/Makefile.common
|
||||
|
|
Loading…
Reference in New Issue