本文主要是介绍Xcode:does not contain bitcode,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
1.错误描述
使用了第三方库错误提示如下:
ld: 'xxx' does not contain bitcode. You must rebuild it with bitcode enabled (Xcode setting ENABLE_BITCODE), obtain an updated library from the vendor, or disable bitcode for this target. 'xxx' for architecture arm64。
颜色加红部分已经说明要了设置Enable Bitcode。
2.问题原因
使用的第三方库不支持Bitcode ,而xcode默认是开启Bitcode的。所以要么第三方库支持Bitcode,要么修改xcode设置关闭Bitcode。
3.解决方案
通过 Project->Unity-iPhone-> BuildSettings -> Enable Bitcode,设置为 NO。
Targets->Unity-iPhone-> BuildSettings -> Enable Bitcode,设置为 NO。
两个地方都要设置Enable Bitcode为No。
这篇关于Xcode:does not contain bitcode的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!