diff options
| author | 2017-03-08 14:14:58 +0000 | |
|---|---|---|
| committer | 2017-03-08 14:14:58 +0000 | |
| commit | 9a193f6ec2758f716238e662573fdc11cff8bbac (patch) | |
| tree | ee9b865efd2b58eefb117c3513faf1e67f021a7a | |
| parent | 335f644f617d9837bc44219c70a2943f36c3f496 (diff) | |
codegen_test: Add missing dependency.
The lack of this dependency causes two categories of errors :
- Running without the simulator on clean builds, since the dlopen
in code_simulator_container.cc fails (and that isn't fatal).
- Spurious crashes whilst running against an old version of
libartd-simulator, coupled with the fact that the new / free
pair are in different shared libs.
Test: make -j32 test-art-host-gtest-codegen_test64
Change-Id: Ifd59688e62e248fcaf06ef14350eec989b853a61
| -rw-r--r-- | compiler/Android.bp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/compiler/Android.bp b/compiler/Android.bp index 1ee2a21b18..c59e36b597 100644 --- a/compiler/Android.bp +++ b/compiler/Android.bp @@ -417,6 +417,7 @@ art_cc_test { shared_libs: [ "libartd-compiler", + "libartd-simulator", "libvixld-arm", "libvixld-arm64", |