博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
升级xcode7.0 第三方库不能用的解决方法(bitcode是什么鬼?)
阅读量:4596 次
发布时间:2019-06-09

本文共 2024 字,大约阅读时间需要 6 分钟。

链接地址:

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

1.
‘/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选项:

blob.png

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

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

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

转载于:https://www.cnblogs.com/wvqusrtg/p/4894878.html

你可能感兴趣的文章
[NOI2008]假面舞会(DFS)
查看>>
BZOJ2137: submultiple(生成函数,二项式定理)
查看>>
winform程序关闭界面时弹出提示框
查看>>
vue 解决页面加载时闪烁出现vue标签或者指令的问题v-cloak
查看>>
iOS中Block介绍 基础
查看>>
Android 服务类Service 的详细学习
查看>>
通过 ANE(Adobe Native Extension) 启动Andriod服务 推送消息(二)
查看>>
poj Dropping tests 01分数规划---Dinkelbach算法
查看>>
服务命令Linux安装配置apache
查看>>
运行确认怎么用vnc访问自己电脑,并且同时又是同一个会话?
查看>>
FTP文件操作之下载文件
查看>>
【Java NIO】一文了解NIO
查看>>
有赞订单导出的配置化实践
查看>>
Linux更改目录及其子目录、文件的访问权限
查看>>
29. Divide Two Integers
查看>>
D3.js 区域生成器 (V3版本)
查看>>
Linux的命令与文件的搜寻which、whereis、locate、find的区别
查看>>
237. Delete Node in a Linked List
查看>>
EF、Dapper、NHibernate等ORM框架的比较及优缺点
查看>>
Druid数据库连接池的一般使用
查看>>