Bug 1783899 - Update dump_syms to 516b66603c390b3a361c508adc0140a6840ce22b. r=gsvelto

Differential Revision: https://phabricator.services.mozilla.com/D154113
This commit is contained in:
Markus Stange 2022-08-11 23:58:20 +00:00
parent ff538cab0e
commit 8ac9db0d08
2 changed files with 2 additions and 6 deletions

View File

@ -406,7 +406,7 @@ dump-syms:
fetch:
type: git
repo: https://github.com/mozilla/dump_syms/
revision: 29c131802494c52e9e89597f1d763f79e797b348
revision: 516b66603c390b3a361c508adc0140a6840ce22b
rust-minidump:
description: rust-minidump 0.14.0 source code (for minidump-stackwalk)

View File

@ -911,11 +911,7 @@ class Dumper_Mac(Dumper):
# in order to dump all the symbols.
if dsymbundle:
# This is the .dSYM bundle.
return (
[self.dump_syms]
+ arch.split()
+ ["--type", "macho", "-j", "2", dsymbundle, file]
)
return [self.dump_syms] + arch.split() + ["-j", "2", dsymbundle, file]
return Dumper.dump_syms_cmdline(self, file, arch)
def GenerateDSYM(self, file):