diff options
author | Logan Chien <loganchien@google.com> | 2012-03-27 15:12:48 +0800 |
---|---|---|
committer | Shih-wei Liao <sliao@google.com> | 2012-03-27 00:16:19 -0700 |
commit | 0faf82f6ebd9122c995b620bd51253e6f59515e0 (patch) | |
tree | 9659ed739132b4cf9c07c88353a622087d715db3 | |
parent | 6e41d42f6b7977325a87a125c344c1c9cdf6c949 (diff) | |
download | art-0faf82f6ebd9122c995b620bd51253e6f59515e0.zip art-0faf82f6ebd9122c995b620bd51253e6f59515e0.tar.gz art-0faf82f6ebd9122c995b620bd51253e6f59515e0.tar.bz2 |
Fix LLVM build linking error.
Change-Id: Ia39cb3bd6fc5f52b5bffffd6f1f596813ea1e04b
-rw-r--r-- | build/Android.libart-compiler-llvm.mk | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/build/Android.libart-compiler-llvm.mk b/build/Android.libart-compiler-llvm.mk index 19152f6..9100646 100644 --- a/build/Android.libart-compiler-llvm.mk +++ b/build/Android.libart-compiler-llvm.mk @@ -88,7 +88,7 @@ define build-libart-compiler-llvm libLLVMMipsInfo \ libLLVMMipsCodeGen \ libLLVMMipsDesc \ - libLLVMMipsAsmPrinter \ + libLLVMMipsAsmPrinter libart_compiler_llvm_x86_STATIC_LIBRARIES := \ libLLVMX86Info \ @@ -117,6 +117,7 @@ define build-libart-compiler-llvm libLLVMAsmPrinter \ libLLVMSelectionDAG \ libLLVMCodeGen \ + libLLVMVectorize \ libLLVMScalarOpts \ libLLVMInstCombine \ libLLVMInstrumentation \ |