Use real shared library names for symbol files
This commit is contained in:
parent
4c9d432bd9
commit
3a571bbdb4
1 changed files with 1 additions and 1 deletions
|
@ -117,7 +117,7 @@ def GetSharedLibraryDependenciesLinux(binary):
|
|||
for line in ldd.splitlines():
|
||||
m = lib_re.match(line)
|
||||
if m:
|
||||
result.append(m.group(1))
|
||||
result.append(os.path.realpath(m.group(1)))
|
||||
return result
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue