I'm starting to use Instruments-Leaks with an iPhone 3G. When I try to run the app with Instruments on the iPhone I obtain

Target failed to run: Remote exception encountered: 'Failed to get task for pid 280'

Ideas?

The only time I succeed in running the app with instruments it run very slow, I couldn't test it. What are the steps to run the app on the device searching for leaks?

link|improve this question

Although I can't directly help you with your issue, here is a guide that I recently found helpful. It walks you through a sample project and shows you how to use instruments to find leaks. – Stunner Dec 1 '10 at 10:41
Thanks. Now it runs, but it's still very slow... – Cricket Dec 1 '10 at 11:12
This may be a good tutorial, but is unhelpful with respect the error: 'Failed to get task for pid XXX' – johnnieb Feb 3 at 1:47
feedback

3 Answers

up vote 103 down vote accepted

The solution for me was to make sure that my Profile scheme was using the "debug" and not "release" build configuration.

In Xcode 4 select Product/Edit Scheme from the top menu then click on the "profile" button on the left. On the "info" pane you will see a setting for Build Configuration- set that to "debug"

link|improve this answer
1  
You may need to restart Xcode/clean/delete app on device (some combination of these). – Grav Dec 14 '11 at 9:22
3  
This isn't really a fix right? Profiling should be on the Release build. – pumpk1n Feb 29 at 21:48
wish I could tripe upvote this. I think I've come back to this about 3 times or so... Thanks! – DonnaLea Apr 20 at 9:27
feedback

This error is also thrown if you are trying to test your app on a device with a distribution profile selected. Make sure you have the correct code-sign settings for development.

link|improve this answer
If this is indeed correct, this is the best answer -- the above highly-rated answer will also solve the problem, but for those of us that have significant performance differences between Debug & Release profiles, it makes a difference to simply use Debug... – makdad Jan 8 at 6:31
this also worked for me – Sergi Apr 30 at 15:31
feedback

You CAN profile the release build on the device. What you have to do is build the release build with a developer certificate. See here.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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