How do I open the .dSYM package to see a list of symbols?

I read that the IOS app character list is in .dSYM. I would like to go through the whole list of symbols, do you know what tool I need to extract this information from this package?

thank

-Malena

+3


source to share


1 answer


You can use dwarfdump .

For example, to view all the public types in the dSYM file for the ARM64 architecture:



dwarfdump --arch arm64 --debug-pubtypes YourFramework.framework.dSYM/

      

Check the dwarfdump man page for more information. With this command, you can also fetch strings, filter by name and address, etc.

+2


source







All Articles