iOS 瞭解Xcode Bitcode

級別:★☆☆☆☆
標籤:「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

Xcode之Bitcode

  • BitcodeXcode7的新特性。
  • 查看Bitcode:TARGETS -> Build Settings -> 搜索Enable Bitcode ,示意圖以下:
    Xcode Bitcode

Bitcode的官方說明

官方: 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都須要包含Bitcodegit

看了以上內容,咱們就能夠對Bitcode有一個簡單的瞭解了。那麼若是咱們項目中在使用某些Framework或.a的時候,遇到了相似筆者遇到的錯誤的時候,咱們就須要查看所用的Framework或.a是否支持bitcodegithub

查看framework或者.a文件是否支持bitcode,支持哪些架構:

  • 首先給你們介紹一個工具:otool
  • 說明:
    otoolobject file display tool.
    用於查看object file的工具。

咱們能夠使用otool查看framework或者.a 是否支持設置Enable BitcodeYES,在終端中使用以下命令查看:xcode

  • otool -l framwork路徑下的實體文件 | grep __LLVM

說明: 使用otool 工具 查看framework文件的load commands內容,而後搜索load commands中的__LLVMbash

若是上述命令的輸出結果有__LLVM,那麼就說明,所用的framework.a支持設置Enable bitcodeYES,不然不支持。微信

  • 示例:
otool -l /Users/wangyongwang/Documents/QiBitcode/QiBitcode.framework/QiBitcode | grep __LLVM
複製代碼
  1. 若是上述命令沒有輸出結果,那麼說明所用的framework.a不支持設置Enable bitcodeYES架構

  2. 若是有以下的輸出結果,那麼說明所用的framework.a支持設置Enable bitcodeYESapp

segname __LLVM
   segname __LLVM
   segname __LLVM
   segname __LLVM
複製代碼
  • App支持Enable Bitcode的必要條件:
  1. 使用的framework或者.a 文件支持設置 Enable bitcode爲YES;
  2. 使用的framework或者.a 文件支持的架構是齊全的;
  • 那麼爲何有些framework沒有作成支持Enable bitcode的方式呢?

我查到了以下資料:可能筆者本身理解上還有些問題,筆者就不解讀了,你們自行解讀。ide

  1. 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."
  • 查看framework支持的架構有哪些:

先給你們介紹下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 framework或者.a實體文件路徑
  • 使用示例:
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

關於Architectures:

截止到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篇)
奇舞週刊

相關文章
相關標籤/搜索