Skip to content

Instantly share code, notes, and snippets.

View AdamNorberg's full-sized avatar

Adam Norberg AdamNorberg

  • Google, Inc.
  • Kirkland, WA
View GitHub Profile
@AdamNorberg
AdamNorberg / symbolicate-sample-dump.py
Created March 6, 2023 19:43 — forked from drewmccormack/symbolicate-sample-dump.py
Symbolicates a sample dump from Activity Monitor
#!/usr/bin/env python3
#
# To use this, just put the DSYMS in the same directory as the sample dump file,
# and run the script from that directory, passing the sample dump file name as only argument
#
import re, sys, os, subprocess
sampleFile = sys.argv[1]