升级完xcode,真机运行发现报错,第三方库错误,微信SDK,高德SDK都报错,如下:

‘/Users/**/Framework/SDKs/PolymerPay/Library/mobStat/lib**SDK.a(**ForSDK.o)’ 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. for architecture arm64

这个问题是由iOS9新特性 bitcode导致的,接下来介绍下这个bitcode,百度来的。

App Distribution Guide – App Thinning (iOS, watchOS)一节中,找到了下面这样一个定义:

Bitcode is an intermediate representation of a compiled program. Apps you upload to iTunes Connect that contain bitcode will be compiled and linked on the App Store. Including bitcode will allow Apple to re-optimize your app binary in the future without the need to submit a new version of your app to the store.

说的是bitcode是被编译程序的一种中间形式的代码。包含bitcode配置的程序将会在App store上被编译和链接。bitcode允许苹果在后期重新优化我们程序的二进制文件,而不需要我们重新提交一个新的版本到App store上。

继续看,在What’s New in Xcode-New Features in Xcode 7中,还有一段如下的描述

Bitcode. When you archive for submission to the App Store, Xcode will compile your app into an intermediate representation. The App Store will then compile the bitcode down into the 64 or 32 bit executables as necessary.

当我们提交程序到App store上时,Xcode会将程序编译为一个中间表现形式(bitcode)。然后App store会再将这个botcode编译为可执行的64位或32位程序。

再看看这两段描述都是放在App Thinning(App瘦身)一节中,可以看出其与包的优化有关了。喵大(@onevcat)在其博客开发者所需要知道的 iOS 9 SDK 新特性中也描述了iOS 9中苹果在App瘦身中所做的一些改进,大家可以转场到那去研读一下。

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. for architecture arm64

要么让第三方库支持,要么关闭target的bitcode选项。

实际上在Xcode 7中,我们新建一个iOS程序时,bitcode选项默认是设置为YES的。我们可以在”Build Settings”->”Enable Bitcode”选项中看到这个设置。

如果我们开启了bitcode,在提交包时,下面这个界面也会有个bitcode选项:

盗图,我的应用没办法在这个界面显示bitcode,因为依赖于第三方的库,而这个库不支持bitcode,暂时只能设置ENABLE_BITCODE为NO。

所以,如果我们的工程需要支持bitcode,则必要要求所有的引入的第三方库都支持bitcode。我就只能等着公司那些大哥大姐们啥时候提供一个新包给我们了。

参考资料:http://www.cocoachina.com/ios/20150817/13078.html

 

最新文章

  1. WPF中RadioButton绑定数据的正确方法
  2. DIV的Position属性和DIV嵌套DIV
  3. c#怎么把byte转化成int
  4. VirtualBox中虚拟Ubuntu添加新的虚拟硬盘
  5. SGU 186
  6. python基础知识十
  7. 虚拟机下安装VMware Tools
  8. nginx防恶意域名解析
  9. mysql cp复制和mysqldump备份测试
  10. jar文件和aar文件的区别
  11. django_视图层_便捷工具
  12. bzoj 4326: NOIP2015 运输计划(二分+树链剖分)
  13. c++编程之内存的分配
  14. PAT甲级1052 Linked List Sorting
  15. PHP5.4 需要添加的configure参数
  16. 18 网络编程-TCP/IP各层介绍(5层模型讲解)
  17. django自带的登录验证功能
  18. JavaScript的进阶之路(七)客户端JavaScript知识点总结
  19. areas表-省市区
  20. IIS应用程序池自动回收作业

热门文章

  1. Discuz! X2.5 /source/class/helper/helper_seo.php Remote Code Execution Vul
  2. django admin中保存添加的数据提示need string or buffer, int found
  3. Appium运行时,error: Logcat capture failed: spawn ENOENT的解决办法
  4. .net 运用YUI相关的dll压缩js (按照自己的规则,想想都觉得强大和有趣)
  5. 如何写出优雅的css代码 ?
  6. JavaWeb---总结(十五)JSP基础语法
  7. 初学者 的 js 关于checkbox全选的问题
  8. Java数据结构——栈
  9. Android学习笔记——ListView
  10. 解决问题--VS2012中一个Panel覆盖另一个Panel时拖动时容易造成两个控件成父子关系的避免