9
votes

I just updated my device to iOS 4.3.3. Xcode 4 automatically updated when I plugged in my iPhone4 first time after iOS update.

When running my project I get a warning now:

warning: Unable to read symbols for /Developer/Platforms/iPhoneOS.platform/DeviceSupport/4.3.3 (8J2)/Symbols/System/Library/AccessibilityBundles/AccessibilitySettingsLoader.bundle/AccessibilitySettingsLoader (file not found).

Why do I get this warning and how to solve this?

3
did you update xcode to 4.3.3? - Jesse Naugher
Yes it did update automatically - Upvote
I've started getting a similar warning, and fetching the symbols from my device didn't help: warning: Unable to read symbols for /Developer/Platforms/iPhoneOS.platform/DeviceSupport/4.3.3 (8J2)/Symbols/System/Library/Frameworks/IOKit.framework/IOKit (file not found). warning: Tried to remove a non-existent library: /Developer/Platforms/iPhoneOS.platform/DeviceSupport/4.3.3 (8J2)/Symbols/System/Library/Frameworks/IOKit.framework/IOKit Any suggestions would be appreciated! - Kendall Lister

3 Answers

9
votes

I also faced this issue you should just delete that folder (/Developer/Platforms/iPhoneOS.platform/DeviceSupport//4.3.3), connect your device again, go to the XCode Organizer and it will ask you to collect the symbols from the device. After a couple minutes it will be done collecting and processing the symbols off the device, and you should be good to go.

1
votes

As I've read elsewhere, making a symlink can take care of the problem. I had no success with refetching symbols from my ipad. This probably isn't the best solution, but it's working so far for me.

just run:

sudo ln  -s /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS4.3.sdk/Developer/
 /Developer/Platforms/iPhoneOS.platform/DeviceSupport/4.3.3 (8J2)/Symbols/Developer
0
votes

You should open Organizer( Xcode > Window > Organizer ) and do something like "fetch symbols" I think when your phone is plugged in.