aboutsummaryrefslogtreecommitdiffstats
path: root/shared_llvm.mk
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 /shared_llvm.mk
parent1255ecdd03f25d397c6871c18a6be6ba8f1142e7 (diff)
downloadexternal_llvm-ba309b04ea5c66df1bc1c27849642d2602ab869d.zip
external_llvm-ba309b04ea5c66df1bc1c27849642d2602ab869d.tar.gz
external_llvm-ba309b04ea5c66df1bc1c27849642d2602ab869d.tar.bz2
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 'shared_llvm.mk')
-rw-r--r--shared_llvm.mk8
1 files changed, 8 insertions, 0 deletions
diff --git a/shared_llvm.mk b/shared_llvm.mk
index 3945dd7..8e20092 100644
--- a/shared_llvm.mk
+++ b/shared_llvm.mk
@@ -56,6 +56,13 @@ llvm_post_static_libraries := \
libLLVMSupport \
libLLVMVectorize
+llvm_host_static_libraries := \
+ libLLVMExecutionEngine \
+ libLLVMMCDisassembler \
+ libLLVMRuntimeDyld \
+ libLLVMJIT \
+ libLLVMMCJIT
+
ifeq (true,$(FORCE_BUILD_LLVM_COMPONENTS))
# HOST LLVM shared library build
include $(CLEAR_VARS)
@@ -71,6 +78,7 @@ LOCAL_WHOLE_STATIC_LIBRARIES := \
$(llvm_arm_static_libraries) \
$(llvm_x86_static_libraries) \
$(llvm_mips_static_libraries) \
+ $(llvm_host_static_libraries) \
$(llvm_post_static_libraries)
ifeq ($(HOST_OS),windows)