I am looking for a way to symbolize external application symbols (iOS) inside my own application (macOS), assuming I have DSYM and system symbols.
Xcode symbolizes both the addresses of applications and the addresses of system systems (UIKit, Foundation, etc.), atos requires an image file and can symbolize addresses from this image.
I want to symbolize a large number of addresses in my own application. Addresses are stack traces at different points in time. I would also like to symbolize the addresses of the system.
I found atosl that uses dwarf.h and libdwarf.h to override atos to varying degrees of success, however this seems like a very low-level approach.
Is there another way to simultaneously symbolize a large number of addresses?
source share