Merge "Use /system/lib64 and /vendor/lib64 for 64-bit libraries."
This commit is contained in:
commit
242b2e0b92
1 changed files with 5 additions and 0 deletions
|
@ -90,8 +90,13 @@ static soinfo* sonext = &libdl_info;
|
|||
static soinfo* somain; /* main process, always the one after libdl_info */
|
||||
|
||||
static const char* const gSoPaths[] = {
|
||||
#if __LP64__
|
||||
"/vendor/lib64",
|
||||
"/system/lib64",
|
||||
#else
|
||||
"/vendor/lib",
|
||||
"/system/lib",
|
||||
#endif
|
||||
NULL
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue