11

I read that the symbols list of an IOS app are in the .dSYM. I would like to view the entire list of symbols, do you guys know what tool do I need to use to extract this information from this package?

thanks

-Malena

malena
  • 798
  • 11
  • 26

1 Answers1

16

You can use dwarfdump.

For example to see all public types in a dSYM-file for ARM64 architecture run:

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

pub is just short for public.

For more information check the man-page of dwarfdump. Using this command you can also extract strings, filter by name and address and more.

mfaani
  • 33,269
  • 19
  • 164
  • 293
utopalex
  • 1,324
  • 10
  • 9