The Symbolicator is a program to symbolicate crash logs generated on Mac OS X.
Symbolication is the process of replacing bare memory addresses with function name, filename, and line number information. The Symbolicator obtains this information from dSYM bundles, which you generate as part of your build process and archive as part of your release process.
Apple has an article about setting up your Xcode project to generate dSYM bundles and stripped executables. You'll release the fully-stripped executables to users, and keep the dSYM bundles on hand so that you can symbolicate any crash logs you receive.
When you receive a crash log, pipe it through the Symbolicator, probably into a pager or editor. The Symbolicator will use Spotlight to find any dSYM bundles it needs, and dwarfdump to extract symbol information for the addresses in the crash log.
The Symbolicator reads your crash log from files you name on the command-line, or from standard input. It writes the symbolicated crash log(s) to standard output.
This means that you can use ThisService to make a Symbolicator service: open the crash log in a text editor, select everything, and run the service, and your text editor will replace the un-symbolicated crash log text with the symbolicated version.
You will need to have the dSYM bundles lying around somewhere on your system. The Symbolicator uses Spotlight to find them, so you won't need to tell it about them; just having them is enough.
All of the other symbolication tools either don't work or require you to keep the main bundle and dSYM bundle together, whereas the Symbolicator:
The Symbolicator makes dwarfdump easier to use on an entire crash log: You simply feed in the crash log, and the Symbolicator will run dwarfdump on each address for you.
I obtained these MD5 and SHA1 signatures, and you can check them, using EasyHash.
If you want to contribute bug-fixes or enhancements to the Symbolicator, the easiest way to do that is to clone the Mercurial repository for the Symbolicator. To do this, type this command into a terminal:
hg clone https://bitbucket.org/boredzo/symbolicator
I provide the Symbolicator under a three-clause BSD license. For more information, see the file named LICENSE.txt that comes with it.
2009-04-19 http://boredzo.org/symbolicator |
![]() |