diff options
-rw-r--r-- | shared_llvm.mk | 5 | ||||
-rw-r--r-- | tools/llc/Android.mk | 5 |
2 files changed, 6 insertions, 4 deletions
diff --git a/shared_llvm.mk b/shared_llvm.mk index 0a438a2..718afb3 100644 --- a/shared_llvm.mk +++ b/shared_llvm.mk @@ -82,7 +82,8 @@ include $(LLVM_HOST_BUILD_MK) include $(BUILD_HOST_SHARED_LIBRARY) #TODOArm64: Enable llvm build -ifneq ($(TARGET_ARCH),arm64) +#TODOMips64: Enable llvm build +ifeq ($(filter $(TARGET_ARCH),arm64 mips64),) # DEVICE LLVM shared library build include $(CLEAR_VARS) @@ -116,6 +117,6 @@ LOCAL_SHARED_LIBRARIES := libcutils libdl libstlport include $(LLVM_DEVICE_BUILD_MK) include $(BUILD_SHARED_LIBRARY) -endif # !arm64 +endif # !(arm64 || mips64) endif # don't build in unbundled branches diff --git a/tools/llc/Android.mk b/tools/llc/Android.mk index 3f5f3df..af1f75a 100644 --- a/tools/llc/Android.mk +++ b/tools/llc/Android.mk @@ -92,7 +92,8 @@ include $(BUILD_HOST_EXECUTABLE) #===---------------------------------------------------------------=== #TODOArm64: Enable llc build -ifneq ($(TARGET_ARCH),arm64) +#TODOMips64: Enable llc build +ifeq ($(filter $(TARGET_ARCH),arm64 mips64),) include $(CLEAR_VARS) LOCAL_MODULE := llc @@ -128,4 +129,4 @@ include $(LLVM_DEVICE_BUILD_MK) include $(LLVM_GEN_INTRINSICS_MK) include $(BUILD_EXECUTABLE) -endif # !arm64 +endif # !(arm64 || mips64) |