Recently, I have run into problems trying to symbolize the iOS application crash log. For some reason, the UUID dSYM was not indexed in Spotlight. After some manual searching and a healthy dose of command line spells, I was able to partially display the crash log.
At first I thought dSYM might be incomplete or something like that, but then I realized that the methods that are missing are those that are found in C ++ code: this project is an Objective-C application that calls C ++ libraries (via Objective-C ++) that return Objective-C code (again, via Objective-C ++ code). The challenges that I miss are, in particular, those that occur in the land of C ++.
So my question is: is there a way the symbology process can resolve C ++ code function calls? What special parameters do I need to set, if any?
source share