Android: Add LLVM support for Android O
Android O moves to LLVM 3.9 and also has some differences in header dependencies as LLVM has moved to blueprint files. It seems libLLVMCore was only needed for header dependencies, so we can drop that for O. Signed-off-by: Rob Herring <robh@kernel.org> Reviewed-by: Emil Velikov <emil.velikov@collabora.com>
This commit is contained in:
committed by
Emil Velikov
parent
26aee6f4d5
commit
d31a2b4d49
+4
-1
@@ -92,7 +92,10 @@ define mesa-build-with-llvm
|
||||
$(if $(filter 7,$(MESA_ANDROID_MAJOR_VERSION)), \
|
||||
$(eval LOCAL_CFLAGS += -DHAVE_LLVM=0x0308 -DMESA_LLVM_VERSION_PATCH=0) \
|
||||
$(eval LOCAL_STATIC_LIBRARIES += libLLVMCore) \
|
||||
$(eval LOCAL_C_INCLUDES += external/llvm/include external/llvm/device/include),)
|
||||
$(eval LOCAL_C_INCLUDES += external/llvm/include external/llvm/device/include),) \
|
||||
$(if $(filter O,$(MESA_ANDROID_MAJOR_VERSION)), \
|
||||
$(eval LOCAL_CFLAGS += -DHAVE_LLVM=0x0309 -DMESA_LLVM_VERSION_PATCH=0) \
|
||||
$(eval LOCAL_HEADER_LIBRARIES += llvm-headers),)
|
||||
endef
|
||||
|
||||
# add subdirectories
|
||||
|
||||
Reference in New Issue
Block a user