用Xcode 7 beta 3在真機(jī)(iOS 8.3)上運(yùn)行一下工程,結(jié)果發(fā)現(xiàn)工程編譯不過。看了下問題剑逃,報(bào)的是以下錯(cuò)誤:
ld: ‘/Users/**/Framework/SDKs/PolymerPay/Library/mobStat/lib**SDK.a(**ForSDK.o)’does not contain bitcode. You must rebuild it with bitcode enabled (Xcodesetting ENABLE_BITCODE), obtain an updated library from the vendor, or disablebitcode for this target. for architecture arm64
得到的信息是引入的一個(gè)第三方庫不包含bitcode。
Bitcode是個(gè)什么鬼官辽?
查閱了一下官方文檔蛹磺,在App
Distribution Guide–App Thinning (iOS, watchOS)一節(jié)中,找到了下面這樣一個(gè)定義:
Bitcode is an intermediate representationof a compiled program. Apps you upload to iTunes Connect that contain bitcodewill be compiled and linked on the App Store. Including bitcode will allowApple to re-optimize your app binary in the future without the need to submit anew version of your app to the store.
說的是bitcode是被編譯程序的一種中間形式的代碼同仆。包含bitcode配置的程序?qū)?huì)在App store上被編譯和鏈接萤捆。bitcode允許蘋果在后期重新優(yōu)化程序的二進(jìn)制文件,而不需要重新提交一個(gè)新的版本到App store上俗批。
而在What’s New in Xcode-New Features in Xcode 7中俗或,還有一段如下的描述:
Bitcode. When you archive for submission tothe 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 bitexecutables as necessary.
當(dāng)提交程序到App store上時(shí),Xcode會(huì)將程序編譯為一個(gè)中間表現(xiàn)形式(bitcode)扶镀。然后App store會(huì)再將這個(gè)bitcode編譯為可執(zhí)行的64位或32位程序蕴侣。
再看看這兩段描述焰轻,都是放在App Thinning(App瘦身)一節(jié)中臭觉,可以看出其與包的優(yōu)化有關(guān)了。
Bitcode配置
在上面的錯(cuò)誤提示中,提到了如何處理我們遇到的問題:
You must rebuild it with bitcode enabled(Xcode setting ENABLE_BITCODE), obtain an updated library from the vendor, ordisable bitcode for this target. for architecture arm64
要么讓第三方庫支持蝠筑,要么關(guān)閉target的bitcode選項(xiàng)狞膘。
實(shí)際上,在Xcode 7中什乙,我們新建一個(gè)iOS程序時(shí)挽封,bitcode選項(xiàng)默認(rèn)是設(shè)置為YES的。我們可以在”Build Settings”->”Enable Bitcode”選項(xiàng)中看到這個(gè)設(shè)置臣镣。不過辅愿,我們現(xiàn)在需要考慮的是三個(gè)平臺(tái):iOS,Mac OS忆某,watchOS点待。
對(duì)于iOS,bitcode是可選的弃舒;對(duì)于watchOS癞埠,bitcode是必須的;而Mac OS是不支持bitcode聋呢。
如果我們開啟了bitcode苗踪,在提交包時(shí),下面這個(gè)界面也會(huì)有個(gè)bitcode選項(xiàng):
所以削锰,如果我們的工程需要支持bitcode通铲,則必要要求所有引入的第三方庫都支持bitcode。