mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-26 21:00:29 +00:00
Don't build the runtime library if LLVMGCC is not configured.
llvm-svn: 30691
This commit is contained in:
parent
d9818dd9a2
commit
ff83d25c48
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user