Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

(_hidden#919_:0) inside crash symbolication file

I am attempting to manually symbolicate a crash log since Xcode 7 will not do it for me. Yet, I come to this result:

enter image description here

What does this mean and what can I do with this? I have used atos as well and it just gives me the same address! I am sure I have the right dSYM, .app, and log as well.

Thanks!

like image 652
Michael Ninh Avatar asked Nov 21 '15 17:11

Michael Ninh


People also ask

What are the hidden adjective?

buried, clandestine, concealed, covered, covert, dark, invisible, latent, mysterious, obscure, private, secluded, underground, undisclosed, unknown, cloaked, close, clouded, disguised, eclipsed.

What is the full meaning of hidden?

Definition of hidden 1 : being out of sight or not readily apparent : concealed. 2 : obscure, unexplained, undisclosed.

What is an example of a hidden?

The definition of hidden is concealed. An example of hidden is something that's been put in the very back of a drawer and is hard to see. An example of hidden is a bald head under a toupee. Obscure.

What are the 2 meanings of hide?

transitive verb. 1a : to put out of sight : secrete hide a key under the doormat. b : to conceal for shelter or protection : shield They hid him from the police. 2 : to keep secret hide the truth. 3 : to screen from or as if from view : obscure clouds hid the sun.


1 Answers

When you see __hidden_ in crash log for function names, this means you enabled bitcode during ipa export from archive. In order to be able to symbolicate crash log you should use module map files from archive: enter image description here

Here are the commands you need to run in terminal:


dsymutil --symbol-map PATH_TO_BCSYMBOLMAPS_DIR PATH_TO_DSYM


for all symbol map files. After this command you can use atos command as you have tried:

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

like image 101
David V Avatar answered Oct 17 '22 19:10

David V