Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 7c744739 authored by Raghavendra Rao Ananta's avatar Raghavendra Rao Ananta
Browse files

AndroidKernel: Update the LLVM path



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

Change-Id: I7c6c46047b4bb6f4a9e3d49eec1ae252c42fdbd8
Signed-off-by: default avatarRaghavendra Rao Ananta <rananta@codeaurora.org>
parent 8986b711
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -49,10 +49,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 := $(SDCLANG_PATH_2)/clang
    ifeq ($(shell echo $(SDCLANG_PATH) | head -c 1),/)
       KERNEL_LLVM_BIN := $(SDCLANG_PATH)/clang
    else
       KERNEL_LLVM_BIN := $(ANDROID_BUILD_TOP)/$(SDCLANG_PATH_2)/clang
       KERNEL_LLVM_BIN := $(ANDROID_BUILD_TOP)/$(SDCLANG_PATH)/clang
    endif
    $(warning "Using sdllvm" $(KERNEL_LLVM_BIN))
  else