AndroidKernel: Update the LLVM path

Update the LLVM path due to a change in the compiler version.

Change-Id: I7c6c46047b4bb6f4a9e3d49eec1ae252c42fdbd8
Signed-off-by: Raghavendra Rao Ananta <rananta@codeaurora.org>
This commit is contained in:
Raghavendra Rao Ananta
2018-04-17 16:50:06 -07:00
committed by Jeevan Shriram
parent 90461c5c6d
commit 14958a9a44

View File

@@ -53,10 +53,10 @@ endif
ifeq ($(KERNEL_LLVM_SUPPORT), true)
ifeq ($(KERNEL_SD_LLVM_SUPPORT), true) #Using sd-llvm compiler
ifeq ($(shell echo $(SDCLANG_PATH_2) | head -c 1),/)
KERNEL_LLVM_BIN := $(shell pwd)/$(SDCLANG_PATH_2)/clang
ifeq ($(shell echo $(SDCLANG_PATH) | head -c 1),/)
KERNEL_LLVM_BIN := $(SDCLANG_PATH)/clang
else
KERNEL_LLVM_BIN := $(shell pwd)/$(SDCLANG_PATH_2)/clang
KERNEL_LLVM_BIN := $(shell pwd)/$(SDCLANG_PATH)/clang
endif
$(warning "Using sdllvm" $(KERNEL_LLVM_BIN))
else