Fix crash in check_elf_file.py
`lib` is already a string and doesn't need to be decoded. Bug: 258395719 Test: On internal master: build/soong/soong_ui.bash --make-mode --bazel-mode-staging TARGET_PRODUCT=aosp_coral TARGET_BUILD_VARIANT=userdebug droid dist device-tests platform_tests Change-Id: I83ff35339bea9f01c61d953e251788e0894005dc
This commit is contained in:
@@ -407,8 +407,7 @@ class Checker(object):
|
|||||||
# Chech whether all DT_NEEDED entries are specified.
|
# Chech whether all DT_NEEDED entries are specified.
|
||||||
for lib in self._file_under_test.dt_needed:
|
for lib in self._file_under_test.dt_needed:
|
||||||
if lib not in specified_sonames:
|
if lib not in specified_sonames:
|
||||||
self._error('DT_NEEDED "{}" is not specified in shared_libs.'
|
self._error(f'DT_NEEDED "{lib}" is not specified in shared_libs.')
|
||||||
.format(lib.decode('utf-8')))
|
|
||||||
missing_shared_libs = True
|
missing_shared_libs = True
|
||||||
|
|
||||||
if missing_shared_libs:
|
if missing_shared_libs:
|
||||||
@@ -471,16 +470,14 @@ class Checker(object):
|
|||||||
|
|
||||||
if missing_symbols:
|
if missing_symbols:
|
||||||
for sym, ver in sorted(missing_symbols):
|
for sym, ver in sorted(missing_symbols):
|
||||||
sym = sym.decode('utf-8')
|
|
||||||
if ver:
|
if ver:
|
||||||
sym += '@' + ver.decode('utf-8')
|
sym += '@' + ver
|
||||||
self._error('Unresolved symbol: {}'.format(sym))
|
self._error(f'Unresolved symbol: {sym}')
|
||||||
|
|
||||||
self._note()
|
self._note()
|
||||||
self._note('Some dependencies might be changed, thus the symbol(s) '
|
self._note('Some dependencies might be changed, thus the symbol(s) '
|
||||||
'above cannot be resolved.')
|
'above cannot be resolved.')
|
||||||
self._note('Please re-build the prebuilt file: "{}".'
|
self._note(f'Please re-build the prebuilt file: "{self._file_path}".')
|
||||||
.format(self._file_path))
|
|
||||||
|
|
||||||
self._note()
|
self._note()
|
||||||
self._note('If this is a new prebuilt file and it is designed to have '
|
self._note('If this is a new prebuilt file and it is designed to have '
|
||||||
|
Reference in New Issue
Block a user