diff options
author | 2015-12-17 11:18:27 -0800 | |
---|---|---|
committer | 2015-12-31 14:15:18 -0800 | |
commit | ac9e66e4a8ed9c5fa8864f4556322c5040be2ed6 (patch) | |
tree | abbefb73307d3c87893a32176474439de244a460 | |
parent | 4bb356123b13ec5f41ea80158766df676ae08679 (diff) |
Revert "Temporary disable linker-namespaces"
This reverts commit 9aefb12cc91eb459d87392700f1199ee07580cd6.
Change-Id: Iac567c03699d65f97c380c2f32ef5a2a56d44721
-rw-r--r-- | runtime/native/java_lang_Runtime.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/native/java_lang_Runtime.cc b/runtime/native/java_lang_Runtime.cc index f42a17d538..c177f19b56 100644 --- a/runtime/native/java_lang_Runtime.cc +++ b/runtime/native/java_lang_Runtime.cc @@ -80,7 +80,7 @@ static jstring Runtime_nativeLoad(JNIEnv* env, jclass, jstring javaFilename, job // Starting with N nativeLoad uses classloader local // linker namespace instead of global LD_LIBRARY_PATH // (23 is Marshmallow) - if (target_sdk_version <= INT_MAX) { + if (target_sdk_version == 0) { SetLdLibraryPath(env, javaLibrarySearchPath); } |