summaryrefslogtreecommitdiffstats
path: root/runtime/java_vm_ext.cc
diff options
context:
space:
mode:
authorDmitriy Ivanov <dimitry@google.com>2014-07-18 10:08:57 -0700
committerDmitriy Ivanov <dimitry@google.com>2015-03-23 11:38:54 -0700
commit785049f8083e56e88dfeab5ff74fb3817f9854e3 (patch)
treeab06a7fb4acb2ed73eed4b58327ba485f61560c4 /runtime/java_vm_ext.cc
parentf5988cf0c47ff935bb19c89ed0398be5fbe44bb6 (diff)
downloadart-785049f8083e56e88dfeab5ff74fb3817f9854e3.tar.gz
art-785049f8083e56e88dfeab5ff74fb3817f9854e3.tar.bz2
art-785049f8083e56e88dfeab5ff74fb3817f9854e3.zip
Add paths to apk!lib/<abi> to LD_LIBRARY_PATH
Add paths to .apk to LD_LIBRARY_PATH to enable bionic linker's "open from zip-file" feature. Bug: 8076853 Change-Id: I1aa2c039bb2a590ae72f256acc9ba5401c2c59b1
Diffstat (limited to 'runtime/java_vm_ext.cc')
-rw-r--r--runtime/java_vm_ext.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/java_vm_ext.cc b/runtime/java_vm_ext.cc
index e68616fc7d..13f3573919 100644
--- a/runtime/java_vm_ext.cc
+++ b/runtime/java_vm_ext.cc
@@ -644,7 +644,7 @@ bool JavaVMExt::LoadNativeLibrary(JNIEnv* env, const std::string& path, jobject
if (handle == nullptr) {
*error_msg = dlerror();
- LOG(ERROR) << "dlopen(\"" << path << "\", RTLD_LAZY) failed: " << *error_msg;
+ VLOG(jni) << "dlopen(\"" << path << "\", RTLD_LAZY) failed: " << *error_msg;
return false;
}