change dll/so searching path for app (#356)
author조웅석/Common Platform Lab(SR)/Principal Engineer/삼성전자 <ws77.cho@samsung.com>
Mon, 27 Dec 2021 08:19:11 +0000 (17:19 +0900)
committerGitHub Enterprise <noreply-CODE@samsung.com>
Mon, 27 Dec 2021 08:19:11 +0000 (17:19 +0900)
commit45977f619f57e63f9efd64e8fbb480823020fe6b
treee84c1110e28d8e99a9abd54ded5d09248fabc9f4
parentb62fd4911ec6dc35e07fdd03592b7d90bd865493
change dll/so searching path for app (#356)

Change the path "/proc/self/fd/bin" used to find dll/so for the candidate process to "/proc/[pid]/fd/bin"
When debugging, the library loaded in the location of "/proc/self/fd/bin" cannot be accessed by the debugger, so symbol loading fails.
To avoid this failure, change finding path to "/proc/[pid]/fd/bin".
NativeLauncher/util/path_manager.cc