does not contain bitcode. You must rebuild it with bitcode enabled

来源:互联网 发布:雷神3知乎 编辑:程序博客网 时间:2024/06/06 01:18


29th,Feb,2016

昨天升级了Xcode7,公司的项目都没有问题,但毕设的项目在编译的过程中出现了问题。

报错:“does not contain bitcode. You must rebuild it with bitcode enabled”

解决方案:Build Setting 中设置Enable Bitcode为NO.


错误2:

报错:“Undefined symbols for architecture arm64:   "_utf8_nextCharSafeBody", referenced from:       _valida”;

解决方案:添加静态库libicucore.dylib。

参考资源:http://stackoverflow.com/questions/9931510/apple-mach-o-linker-errors-20-undefined-symbols-for-architecture-armv7


0 0