Use real shared library names for symbol files

This commit is contained in:
Ales Pergl 2017-10-02 13:58:16 +00:00
parent 4c9d432bd9
commit 3a571bbdb4

View file

@ -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