versioner: Ignore if Clang is missing
This happens in some branches. Work around for now. Change-Id: I75c01a3ae52ce89f6c56a19728903bf86db0a309
This commit is contained in:
parent
e73fc63f96
commit
64da006063
1 changed files with 6 additions and 1 deletions
|
@ -3,8 +3,11 @@ LOCAL_PATH := $(call my-dir)
|
|||
include $(CLEAR_VARS)
|
||||
include $(CLEAR_TBLGEN_VARS)
|
||||
|
||||
LLVM_ROOT_PATH := external/llvm
|
||||
# Only do this when Clang is available.
|
||||
CLANG_ROOT_PATH := external/clang
|
||||
ifneq ($(wildcard $(CLANG_ROOT_PATH)/clang.mk),)
|
||||
|
||||
LLVM_ROOT_PATH := external/llvm
|
||||
include $(CLANG_ROOT_PATH)/clang.mk
|
||||
|
||||
LOCAL_MODULE := versioner
|
||||
|
@ -41,3 +44,5 @@ LOCAL_CPPFLAGS := -std=c++14 -fno-rtti
|
|||
LOCAL_MODULE_HOST_OS := linux
|
||||
|
||||
include $(BUILD_HOST_EXECUTABLE)
|
||||
|
||||
endif
|
||||
|
|
Loading…
Reference in a new issue