Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Missing symbol names when profiling IPhone application with Instruments

I am compiling an IPhone application via command line (so no XCode options involved) and I am unable to get my symbol names to show when profiling with Instruments. I have tried several flags such as -gdawrf-2 and -g without any success. I have also tried using dsymutils to generate a .dSYM file but i have no clue how I'm supposed to use it so that failed aswell.

Any help will be greatly appreciated!

like image 884
Mac Twist Avatar asked May 05 '10 20:05

Mac Twist


1 Answers

I Changed my project settings to not include the dSYM file while building:

enter image description here

Changing it to include the dSYM File helped the profiler desymbolize the symbols and fixed my issue:

enter image description here

like image 163
Antoine Avatar answered Sep 23 '22 06:09

Antoine