級別:★☆☆☆☆
標籤:「Xcode Bitcode」「iOS Architecture」「arm64e」
做者: WYW
審校: QiShare團隊php
最近項目中接入某第三方SDK後,打包的時候發現有以下報錯:xxx.o was build without full bitcode error :
Linker command failed with exit code 1
。 而後通過搜索,設置Enable Bitcode 爲 NO
,就沒有這個報錯了。筆者簡單瞭解了一下Bitcode,今天給你們介紹一下。html
Bitcode
是Xcode7
的新特性。官方: Bitcode is an intermediate representation of a compiled program. apps you upload to App Store 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 App Store. For iOS apps, bitcode is the default, but optional. For watchOS and tvOS apps, bitcode is required. If you provide bitcode, all apps and frameworks in the app bundle (all targets in the project) need to include bitcode.
翻譯:Bitcode
是編譯後的程序的中間表現,包含Bitcode
並上傳到App Store Connect
的Apps會在App Store
上編譯和連接。包含Bitcode
能夠在不提交新版本App的狀況下,容許Apple在未來的時候再次優化你的App 二進制文件。 對於iOS Apps,Enable bitcode
默認爲YES
,是可選的(能夠改成NO)。對於WatchOS和tvOS,bitcode是強制的。若是你的App支持bitcode,App Bundle(項目中全部的target)中的全部的Apps和frameworks都須要包含Bitcode
。git
看了以上內容,咱們就能夠對Bitcode有一個簡單的瞭解了。那麼若是咱們項目中在使用某些Framework或.a的時候,遇到了相似筆者遇到的錯誤的時候,咱們就須要查看所用的Framework或.a是否支持bitcode。github
咱們能夠使用otool查看framework
或者.a
是否支持設置Enable Bitcode
爲YES
,在終端中使用以下命令查看:xcode
說明: 使用otool 工具 查看framework
文件的load commands
內容,而後搜索load commands
中的__LLVM
。bash
若是上述命令的輸出結果有__LLVM
,那麼就說明,所用的framework
或.a
支持設置Enable bitcode
爲YES
,不然不支持。微信
otool -l /Users/wangyongwang/Documents/QiBitcode/QiBitcode.framework/QiBitcode | grep __LLVM
複製代碼
若是上述命令沒有輸出結果,那麼說明所用的framework
或.a
不支持設置Enable bitcode
爲YES
;架構
若是有以下的輸出結果,那麼說明所用的framework
或.a
支持設置Enable bitcode
爲YES
;app
segname __LLVM
segname __LLVM
segname __LLVM
segname __LLVM
複製代碼
我查到了以下資料:可能筆者本身理解上還有些問題,筆者就不解讀了,你們自行解讀。ide
- Build static library or framework via Xcode 7, while user build application using Xcode 6. "Framework and library providers need to include bitcode for Xcode 7 development, and Xcode 7 generates bitcode by default. However, bitcode-enabled framework and library products do not work well with Xcode 6. If you still need to support Xcode 6 development, you must produce an additional version of your products without bitcode. To build a library without bitcode, either use Xcode 7 with the build setting Enable Bitcode disabled (ENABLE_BITCODE=NO) or use Xcode 6."
先給你們介紹下lipo
lipo : Create or operate on a universal file: convert a universal binary to a single architecture file, or vice versa. 建立或者是操做一個通用文件,轉變通用文件爲單獨的架構文件或者反過來轉變單獨架構文件爲通用文件。
給你們介紹一下查看Framework支持的架構,這裏咱們會用到lipo info
。
lipo info
解讀
-info Briefly list the architecture types in the input universal file.
Lists the names of each archive. 簡單地列舉出來輸入的通用文件的架構類型,列舉出來每一個架構的名字:
lipo -info /Users/wangyongwang/Documents/QiBitcode/QiBitcode.framework/QiBitcode
複製代碼
結果示例:Architectures in the fat file:/Users/wangyongwang/Documents/QiBitcode/QiBitcode.framework/QiBitcode are: armv7 i386 x86_64 arm64
截止到2018年Apple新發布了iPhone XS, iPhone XS Max, iPhone XR後,iPhone及CPU對應狀況:
CPU | iPhone |
---|---|
armv6 | iPhone, iPhone 3G |
armv7 | iPhone 3GS, iPhone4(GSM),iPhone 4(CDMA),iPhone 4S |
armv7s | iPhone 5, iPhone 5C |
arm64 | iPhone 5S, iPhone SE, iPhone 6, iPhone 6 Plus, iPhone 6s, iPhone 6s Plus, iPhone 7, iPhone 7 Plus, iPhone 8, iPhone 8 Plus, iPhone X |
arm64e | iPhone XS, iPhone XS Max, iPhone XR |
對於iPhone而言:iPhone 5S以前使用的是32位微處理器,iPhone 5S及以後都是64位的微處理器
模擬器上使用的CPU狀況由所用的電腦肯定
CPU | iPhone |
---|---|
i386 | 32 位微處理器 |
x86_64 | 64 位微處理器 |
關注咱們的途徑有:
QiShare(簡書)
QiShare(掘金)
QiShare(知乎)
QiShare(GitHub)
QiShare(CocoaChina)
QiShare(StackOverflow)
QiShare(微信公衆號)
推薦文章:
iOS 重繪之drawRect
iOS 編寫高質量Objective-C代碼(八)
iOS KVC與KVO簡介
iOS 本地化(IB篇)
iOS 本地化(非IB篇)
奇舞週刊