Reputation: 681
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?
Upvotes: 8
Views: 10715
Reputation: 660
For Xcode 6.1 you just have to delete contents of these two folders:
Quit and restart the xcode.
Upvotes: 3
Reputation: 914
I inadvertently unplugged my phone while the app was running though Xcode and then when I tried again, this message kept coming up, even if I tried other devices. I tried restarting Xcode and then restarted my Mac but it still brought the same message up. The solution for me was simply to remove the app from the device and re-run it.
Upvotes: 0
Reputation: 4990
I had the same problem in Xcode 5 and I just restarted and that solved the problem.
Upvotes: 1
Reputation: 2113
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.
Upvotes: 1
Reputation: 2438
This fixed the problem for me
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
Restart XCode
Upvotes: 2
Reputation: 52728
Not sure if it fixes the problem every time, but this has worked for me in the past:
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
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?
Upvotes: 11