I am using a third party framework with XCode, ( say thirdparty.framework ) which has been built with debug information. Also, they provided a .dSYM file along with it.
However, this third party framework ends up crashing in a particular instance, and on running XCode's gdb's 'bt full' command, I end up getting the 'No Symbol table info available' message for the calls made once inside in the framework.
How can I get the entire info for the function calls made ? i.e: locals, proper function names, etc.
Thanks !