vote up 1 vote down star

I am trying to run the memory leak program in conjunction with my iphone device. The program says that there are leaks however it doesn't give me details.

GeneralBlock-32 No stack trace available.

How can I set up the leak program so it actually works with my iphone to give detailed information like it does in the simulator.

flag

What build profile are you using? Debug, Release, or one of your own? If it's a custom build profile, are you stripping debugging symbols? – Tim Oct 3 at 18:51
iPhone device 3.1 base sdk... is there a place to look to see if the debug symbols are stripped? – Mel Oct 3 at 19:13
I see the strip symbols checkbox is not checked – Mel Oct 3 at 21:44

1 Answer

vote up 0 vote down check

If you are running in Release mode, the compiler will not generate any debug symbols to map the calls back to your code.

if this is the case, changing your build type to Debug mode will provide you with more information about the leaking area of your application.

I have also noticed that the Frameworks tend to have memory leaks of their own, so it could be a leak from the framework.

link|flag

Your Answer

Get an OpenID
or

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