OSDN Git Service

[MIPS64] Temporary placeholder build, to allow other projects to build
authorDuane Sand <duane.sand@imgtec.com>
Tue, 21 Jan 2014 18:47:07 +0000 (10:47 -0800)
committerChris Dearman <chris.dearman@imgtec.com>
Thu, 6 Feb 2014 04:05:01 +0000 (20:05 -0800)
Change-Id: I050c96c687f44e882bb7139a7dd81a46c72ac3b6

shared_llvm.mk
tools/llc/Android.mk

index 0a438a2..718afb3 100644 (file)
@@ -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
index 3f5f3df..af1f75a 100644 (file)
@@ -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)