-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixing 3.1.1 crash, adding crash symbolication script and instruction…
…s in README
- Loading branch information
1 parent
7691b6d
commit ad34c4b
Showing
3 changed files
with
24 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
#!/bin/bash | ||
|
||
# Usage: ./find_crash <crash_file> | ||
crashed_thread=$(cat $1 | grep "Crashed Thread" | cut -d' ' -f3) | ||
start_loc=$(cat $1 | grep "Binary Images" -A1 | grep -v Binary | cut -d' ' -f1) | ||
crash_loc=$(cat $1 | grep "Thread $crashed_thread Crashed" -A1 | grep -v Thread | cut -d' ' -f3) | ||
xcrun atos -o atemOSC.app.dSYM/Contents/Resources/DWARF/atemOSC -arch x86_64 -l $start_loc $crash_loc |