Don't build the runtime library if LLVMGCC is not configured.

llvm-svn: 30691
This commit is contained in:
Reid Spencer 2006-10-02 19:10:56 +00:00
parent d9818dd9a2
commit ff83d25c48

View File

@ -7,4 +7,9 @@
LEVEL = ..
DIRS = compiler runtime
# Don't generate the runtime if we don't have LLVMGCC
ifeq ($(LLVMGCC),)
DIRS := $(filter-out runtime, $(DIRS))
endif
include $(LEVEL)/Makefile.common