Add /odm/lib to shared lib search path
ODM's shared libs should live in /odm/lib on the ODM partition. BUG: 25654402 Change-Id: I3f5c26f208af87ff2817e490e51d0b4f5b8ec98e
This commit is contained in:
parent
63f0e0db76
commit
f74b041cce
1 changed files with 6 additions and 0 deletions
|
@ -125,9 +125,11 @@ static soinfo* somain; // main process, always the one after libdl_info
|
|||
|
||||
static const char* const kDefaultLdPaths[] = {
|
||||
#if defined(__LP64__)
|
||||
"/odm/lib64",
|
||||
"/vendor/lib64",
|
||||
"/system/lib64",
|
||||
#else
|
||||
"/odm/lib",
|
||||
"/vendor/lib",
|
||||
"/system/lib",
|
||||
#endif
|
||||
|
@ -136,11 +138,15 @@ static const char* const kDefaultLdPaths[] = {
|
|||
|
||||
static const char* const kAsanDefaultLdPaths[] = {
|
||||
#if defined(__LP64__)
|
||||
"/data/odm/lib64",
|
||||
"/odm/lib64",
|
||||
"/data/vendor/lib64",
|
||||
"/vendor/lib64",
|
||||
"/data/lib64",
|
||||
"/system/lib64",
|
||||
#else
|
||||
"/data/odm/lib",
|
||||
"/odm/lib",
|
||||
"/data/vendor/lib",
|
||||
"/vendor/lib",
|
||||
"/data/lib",
|
||||
|
|
Loading…
Reference in a new issue