vote up 3 vote down star
1

I am attempting to analyze an iPhone application using the Leaks application and everything appears to be working fine, except for when I try to view detailed information about a particular memory leak. Leaks does not appear to be loading my source code. Looking at the stack view on the right, I can see calls that reference iPhone frameworks, but anything that is referencing source code that I've written is empty. The screenshot below illustrates my point. The blocks that are light blue should be referencing my source code. Has anyone ever had this problem? Is Leaks just not finding my source code/symbols correctly? Thanks!

EDIT: I am compiling the app using the 'Device - iPhone OS 2.2' with the Debug configuration. I launch Leaks by selecting Run->Start With Performance Tool->Leaks from within Xcode. How would one go about 'making the symbol files available' for Leaks?

alt text

flag

67% accept rate

5 Answers

vote up 1 vote down check

Remove any non-ascii characters from both your your startup disk
and hostname (see the Sharing panel in System Preferences) and restart.

Ta da!

link|flag
Did this work? Both my startup disk, and hostname are single words with only ASCII characters - but I don't see symbols either. – Kendall Helmstetter Gelner Sep 17 at 1:30
This helped me with 2.x style crash logs. For 3.0 style I had to learn some perl and fix the symbolicate script. There's probably a definite version by now. – Rhythmic Fistman Sep 17 at 10:51
What do you mean "fix the symbolicate script?" I'm stuck on this same issue without non-ascii characters in either place. Instruments used to work for me until my Snow Leopard "upgrade." – n8gray Sep 22 at 0:01
The script that adds symbols to your stack traces is called "symbolicatecrash". It's one of the least robust pieces of code I've ever seen. It uses spotlight to [fail to] find your .dSYM, ignoring the one in your app dir, the current dir, etc. It was incorrectly quoting shell chars when I fixed my version (this was after the non-ascii work around). If you're comfortable with perl you can debug it, or just google symbolicatecrash+snowleopard. Maybe someone's fixed it good. – Rhythmic Fistman Sep 22 at 6:17
vote up 4 vote down

I saw this happen, but on a different configuration. In Snow Leopard 10.6.1, Xcode 3.2, Instruments 2.0, I wasn't getting any symbols in Leaks when running iPhone OS 3.0 in the simulator. Searching in Apple's iPhone developer forums revealed that this was a known issue with the iPhone 3.0 SDK (that was being worked on), and switching the active SDK to 3.1 was a workaround. Sure enough, it worked for me!

link|flag
I had the same issue and similarly switching the active SDK to iPhone 3.1 worked for me too. Thanks! – keremk Sep 23 at 17:08
vote up 0 vote down

i am having this exact problem.

i can run on simulator and things work fine (no leaks even). i run on the device, and not only do i have leaks, i dont know where to start to fix them.

what do you mean make the symbol files available?

link|flag
vote up 0 vote down

Are you checking the phone running leaks, or the simulator? Some of the frameworks leak on the Simulator and not on the phone.

link|flag
vote up 0 vote down

Did you compile in debug mode and make the symbol files available?

link|flag
would the downvoter please leave a comment. Thanks. – Mitch Wheat May 22 at 10:33

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.