(_hidden # 919_: 0) inside the failure symbol file

I am trying to manually symbolize the crash log since Xcode 7 will not do this for me. However, I came to this result:

enter image description here

What does this mean and what can I do about it? I used atos too and it just gives me the same address! I am sure that I have the correct dSYM, .app and log.

Thanks!

+6
source share
1 answer

When you see __hidden_ ​​in the crash log for function names, it means that you turned on the bitcode while exporting ipa from the archive. To be able to symbolize the failure log, you must use the module map files from the archive: enter image description here

Here are the commands you need to run in the terminal:


dsymutil --symbol-map PATH_TO_BCSYMBOLMAPS_DIR PATH_TO_DSYM


for all character map files. After this command, you can use the atos command as you tried:

dwarfdump --arch YOUR_ARCH myApp.dSYM --lookup YOUR_LOOKUP_ADDRESS

+1
source

All Articles