Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Issue with iphone sdk 4.2.1

Tags:

Probably a silly question. When running my project on the Device in the debug mode I get a lot of warnings al having the following string:

warning: Unable to read symbols for /Developer/Platforms/iPhoneOS.platform/DeviceSupport/4.2.1 (8C148a)/Symbols/System/Library/PrivateFrameworks/

I think its due to the space between "4.2.1" and "(8C148a)". How can i get rid of it? It must be a setting somewhere in Xcode.

I dont have these warnings on the simulator.

thanks in advance, Christian

like image 846
Christian Loncle Avatar asked Nov 23 '10 19:11

Christian Loncle


1 Answers

I was getting:

warning: Unable to read symbols for /Developer/Platforms/iPhoneOS.platform/DeviceSupport/4.2.1 (8C148)/Symbols/usr/lib/info/dns.so (file not found).

Version 4.2.1 does not include 'info/dns.so'. At least that was the case for me. However, it does exist in the 4.2 directory and is pointed to by the /DeviceSupport/Latest shortcut. I simply copy-pasted 'info/dns.so' to where the debugger was looking for it and that seemed to fix the warning.

like image 153
GnarlyDog Avatar answered Nov 25 '22 20:11

GnarlyDog