alljoyn framework ios error: cannot parse the debug map for
alljoyn framework ios error: cannot parse the debug map for
嗨,我正在尝试 运行 Alljoyn ios 与 Xcode 7 和 IOS-9 的聊天示例
但面临以下错误:
ld: warning: directory not found for option '-L/build/Debug-iphoneos'
ld: library not found for -lssl
clang: error: linker command failed with exit code 1 (use -v to see invocation)
error: cannot parse the debug map for
"/Users/myUserName/Library/Developer/Xcode/DerivedData/Build/Products/Debug-iphoneos/AllChatz.app/AllChatz":
No such file or directory
我已从项目和目标中禁用位码设置,但没有找到解决此问题的任何方法。
有什么解决办法吗?或任何替代方法,我如何才能 运行 此演示成功。
您需要添加 openSSL libcrypto.a
和 libssl.a
静态库。
您可以使用此构建脚本从源代码获取它:https://github.com/x2on/OpenSSL-for-iPhone
在构建设置中将 ENABLE_BITCODE 切换为 NO 帮助了我
嗨,我正在尝试 运行 Alljoyn ios 与 Xcode 7 和 IOS-9 的聊天示例 但面临以下错误:
ld: warning: directory not found for option '-L/build/Debug-iphoneos'
ld: library not found for -lssl
clang: error: linker command failed with exit code 1 (use -v to see invocation)
error: cannot parse the debug map for
"/Users/myUserName/Library/Developer/Xcode/DerivedData/Build/Products/Debug-iphoneos/AllChatz.app/AllChatz":
No such file or directory
我已从项目和目标中禁用位码设置,但没有找到解决此问题的任何方法。 有什么解决办法吗?或任何替代方法,我如何才能 运行 此演示成功。
您需要添加 openSSL libcrypto.a
和 libssl.a
静态库。
您可以使用此构建脚本从源代码获取它:https://github.com/x2on/OpenSSL-for-iPhone
在构建设置中将 ENABLE_BITCODE 切换为 NO 帮助了我