don't build edis if the x86 target isn't enabld.

llvm-svn: 97268
This commit is contained in:
Chris Lattner 2010-02-26 21:26:33 +00:00
parent 94fa92b441
commit 134a9dc114
1 changed files with 5 additions and 0 deletions

View File

@ -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