symbolicatecrash not working with dSYM, but 'atos' works

无人久伴 提交于 2019-12-03 00:44:54

symbolicatecrash is a perl script that internally calls atos.

You can grab the code from https://github.com/bitstadium/QuincyKit/blob/develop/server/local/symbolicatecrash.pl (or your XCode installation directory).

Copy it somewhere and edit it to change the line:

print STDERR "Did not find executable for dsym\n" if $opt{v};
return undef;

Change undef to /path/to/your.app.dSYM/Contents/Resources/DWARF/YourAppName

Then run it again and it will get you the right output. With some more work your can edit the script to do this automatically or take an additional argument instead of using mdfind...

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!