Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

It appears that since I updated my iPad to iOS 5.01 I can't debug it via xCode.

When I attach the iPad both Xcode and the organiser display "waiting for other symbol processing" which shows indefinitely.

Does anyone have any idea what I can do to fix this?

share|improve this question
Have you updated XCode to the latest version? – Kevin Nov 29 '11 at 0:07
Actual alert text is: "waiting on other symbol processing" Copied here for the benefit of search engine crawlers. – DavidPhillipOster Jan 12 '12 at 18:15

3 Answers

up vote 8 down vote accepted

Not sure if it fixes the problem every time, but this has worked for me in the past:

  1. Quit out of Xcode,
  2. Delete the .copying_lock file in /Developer/Platforms/iPhoneOS.platform/DeviceSupport/5.0.1 <DOUBLE CHECK THE NUMBER HERE, IT COULD BE 5.0 or 5.0.1 (abc), etc>/.

    This can be done in Terminal.app with the command:

    sudo rm /Developer/Platforms/iPhoneOS.platform/DeviceSupport/5.0.1/.copying_lock
    
  3. Run Xcode again. Now the symbol import should start right up and the "Waiting" message should be gone.


If that doesnt work, try deleting the numbered folder itself, then restart xcode again. If that also doesnt work, reinstall xcode maybe?

share|improve this answer
Thanks, in the end i re-installed x-code which did the trick! – AustinRathe Nov 29 '11 at 16:32

This fixed the problem for me

  1. Quit XCode
  2. Open Terminal and run the following commands

    chmod 64 /Developer/Platforms/iPhoneOS.platform/DeviceSupport/5.0(the correct number)/DeveloperDiskImage.dmg
    chmod 64 /Developer/Platforms/iPhoneOS.platform/DeviceSupport/5.0(the correct number)/DeveloperDiskImage.dmg.signature
    
  3. Restart XCode

share|improve this answer

I just ran into this problem myself, and it was because I had an NSLog call in an event that was triggered way more times than I expected. It caused a bottleneck of data from my iPad to my Mac.

I solved it by disconnecting my iPad. I then terminated the app on the iPad using iPad functionality and let Xcode do its thing. It cleared itself up in about half a minute.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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