在任何RubyMotion项目上运行rake device
时,我收到以下错误
*** symbols not found in `/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/DeviceSupport/7.0': debugger might be slow to attach
我该如何解决这个问题?
答案 0 :(得分:1)
Symbols
文件夹中缺少DeviceSupport/7.0
文件夹。
cd /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/DeviceSupport/7.0
sudo ln -s ../../Developer/SDKs/iPhoneOS7.0.sdk Symbols
之后,您的7.0
文件夹
Symbols -> ../../Developer/SDKs/iPhoneOS7.0.sdk
这解决了我。
iOS 4.2.1 Xcode 4.3.2中存在类似问题:https://stackoverflow.com/a/4453666/1095510