aboutsummaryrefslogtreecommitdiffstats
path: root/tools/llc
diff options
context:
space:
mode:
authorDuane Sand <duane.sand@imgtec.com>2014-01-21 10:47:07 -0800
committerChris Dearman <chris.dearman@imgtec.com>2014-02-05 20:05:01 -0800
commita255939b6afb5a83473fee8658281b736b80f9f2 (patch)
tree5f1680e45d0adeed4d3b49f0eac7d393c4787c71 /tools/llc
parent94af5fd9ff423e4de67a23ca21d5964b82a3816a (diff)
downloadexternal_llvm-a255939b6afb5a83473fee8658281b736b80f9f2.zip
external_llvm-a255939b6afb5a83473fee8658281b736b80f9f2.tar.gz
external_llvm-a255939b6afb5a83473fee8658281b736b80f9f2.tar.bz2
[MIPS64] Temporary placeholder build, to allow other projects to build
Change-Id: I050c96c687f44e882bb7139a7dd81a46c72ac3b6
Diffstat (limited to 'tools/llc')
-rw-r--r--tools/llc/Android.mk5
1 files changed, 3 insertions, 2 deletions
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)