本文介绍了SocketRocket尝试安装socketrocket后,我可以使PonyDebugger工作,我得到3个苹果Match-O链接器错误的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我得到了吹拂。这是我第一次尝试安装这个,我有,因为我需要Pony Debugger工作。
I'm getting the fllowing. It's my first time trying to install this and I have to since I need the Pony Debugger working.
Undefined symbols for architecture i386:
"_utf8_countTrailBytes", referenced from:
_validate_dispatch_data_partial_string in libSocketRocket.a(SRWebSocket.o)
"_utf8_nextCharSafeBody", referenced from:
_validate_dispatch_data_partial_string in libSocketRocket.a(SRWebSocket.o)
ld: symbol(s) not found for architecture i386
clang: error: linker command failed with exit code 1 (use -v to see invocation)
任何建议都非常感谢!
谢谢!
编辑:我添加了SocketRocket.Framework到构建阶段,错误已经去了,但现在给我一个新的。
I added the SocketRocket.Framework to the build Phases and the errors are gone but is now giving me a new one.
/Library/Developer/Xcode/DerivedData/ProjectIpaws-fxtqgpqcnolfqvgaeikbuxwzdbcv/Build/Products/Debug-iphonesimulator/SocketRocket/SocketRocket
新的没有意义。
推荐答案
您的应用必须与以下框架链接:
Your app must be linked against the following frameworks:
-
libicucore.dylib
-
CFNetwork.framework
- code> Security.framework
-
Foundation.framework
libicucore.dylib
CFNetwork.framework
Security.framework
Foundation.framework
这篇关于SocketRocket尝试安装socketrocket后,我可以使PonyDebugger工作,我得到3个苹果Match-O链接器错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!