Commit 8ac9db0d authored by Markus Stange's avatar Markus Stange
Browse files

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

parent ff538cab
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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)
+1 −5
Original line number Diff line number Diff line
@@ -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):