mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 03:02:36 +01:00
don't build edis if the x86 target isn't enabld.
llvm-svn: 97268
This commit is contained in:
parent
dd31f278cd
commit
e006dfe764
@ -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
Block a user