aboutsummaryrefslogtreecommitdiffstats
path: root/lib/MC/MCDisassembler
diff options
context:
space:
mode:
authorTodd Fiala <tfiala@google.com>2013-10-18 15:22:40 -0700
committerTodd Fiala <tfiala@google.com>2013-10-22 15:28:11 -0700
commitba309b04ea5c66df1bc1c27849642d2602ab869d (patch)
tree87474c3f45809ca4575b2cda4bcd9eab943a9518 /lib/MC/MCDisassembler
parent1255ecdd03f25d397c6871c18a6be6ba8f1142e7 (diff)
downloadexternal_llvm-ba309b04ea5c66df1bc1c27849642d2602ab869d.tar.gz
external_llvm-ba309b04ea5c66df1bc1c27849642d2602ab869d.tar.bz2
external_llvm-ba309b04ea5c66df1bc1c27849642d2602ab869d.zip
Added libs to the host's libLLVM.so.
Added Android.mk build rules for: * lib/ExecutionEngine * lib/ExecutionEngine/RuntimeDyld * lib/ExecutionEngine/MCJIT * lib/MC/MCDisassembler Added all of the static libraries above to the host build of libLLVM.so. In addition, the following existing static library was added to the host build of libLLVM.so: * lib/ExecutionEngine/JIT Change-Id: I0e6cfac607e02b4ae77ee46df33eca2f96dac8e1
Diffstat (limited to 'lib/MC/MCDisassembler')
-rw-r--r--lib/MC/MCDisassembler/Android.mk15
1 files changed, 15 insertions, 0 deletions
diff --git a/lib/MC/MCDisassembler/Android.mk b/lib/MC/MCDisassembler/Android.mk
new file mode 100644
index 0000000000..7f73df3d7b
--- /dev/null
+++ b/lib/MC/MCDisassembler/Android.mk
@@ -0,0 +1,15 @@
+LOCAL_PATH:= $(call my-dir)
+
+# For the host
+# =====================================================
+include $(CLEAR_VARS)
+
+LOCAL_SRC_FILES := \
+ Disassembler.cpp
+
+LOCAL_MODULE:= libLLVMMCDisassembler
+
+LOCAL_MODULE_TAGS := optional
+
+include $(LLVM_HOST_BUILD_MK)
+include $(BUILD_HOST_STATIC_LIBRARY)