Bug 1790958 - Dump inlined functions when scraping symbols from Windows system libraries r=gerard-majax

Differential Revision: https://phabricator.services.mozilla.com/D157469
This commit is contained in:
Gabriele Svelto 2022-09-23 11:54:25 +00:00
Родитель a88baa8f03
Коммит 5e47755a00
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -273,12 +273,12 @@ async def dump_module(
if has_code:
cmd = (
f"{dump_syms} {code_file} --code-id {code_id} --check-cfi "
f"{dump_syms} {code_file} --code-id {code_id} --check-cfi --inlines "
f"--store {output} --symbol-server '{sym_srv}' --verbose error"
)
else:
cmd = (
f"{dump_syms} {filename} --debug-id {debug_id} --check-cfi "
f"{dump_syms} {filename} --debug-id {debug_id} --check-cfi --inlines "
f"--store {output} --symbol-server '{sym_srv}' --verbose error"
)