https://github.com/ameshkov/symbolicate
Symbolicate mac/ios crash report
https://github.com/ameshkov/symbolicate
Last synced: 3 months ago
JSON representation
Symbolicate mac/ios crash report
- Host: GitHub
- URL: https://github.com/ameshkov/symbolicate
- Owner: ameshkov
- License: mit
- Created: 2020-03-23T11:13:36.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-03-27T12:57:17.000Z (over 5 years ago)
- Last Synced: 2025-03-16T18:21:27.270Z (9 months ago)
- Language: Python
- Size: 4.88 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Symbolicate
Symbolicate macOS or iOS crash reports easily.
This script simply uses `atos` XCode tool to symbolicate crash reports as explained here:
https://developer.apple.com/library/archive/technotes/tn2151/_index.html#//apple_ref/doc/uid/DTS40008184-CH1-SYMBOLICATE_WITH_ATOS
## Requirements
* XCode
* Python3
## Usage
```
$ python3 symbolicate.py --help
Usage: symbolicate.py [options]. symbolicate.py -h for help.
Options:
-h, --help show this help message and exit
-c FILE, --crash=FILE
Path to the .crash file
-d DIR, --dsym=DIR Path to the folder with dSYM files
-o FILE, --output=FILE
Path to the output file with the symbolicated crash
-a ARCH, --arch=ARCH Target architecture
```
Example:
```
python3 symbolicate.py -c test.crash -d test.xcarchive/dSYMs -a x86_64 -o test_symbolicated.crash
```