Avatar
omochimetaru 8/14/2018 3:02 PM
一つは、fbappcoreをビルドするときに Enable Bitcode = YES にしていると、ビルドエラーで、 依存先のものにBitcodeが無い、というメッセージが出ることと 二つ目は、下記を参考にバイナリを調べてみると、 https://stackoverflow.com/questions/32755775/how-to-check-a-static-library-is-built-contain-bitcode carthage向けの定義ファイルからダウンロードできるSDKをしらべると (https://dl.google.com/dl/firebase/ios/carthage/FirebaseFirestoreBinary.json の中にかいてあるURLからDL ) [omochi@omochi-iMacPro Firestore-d7a38cc78422ca26]$ otool -l FirebaseFirestore.framework/FirebaseFirestore | grep bitcode [omochi@omochi-iMacPro Firestore-d7a38cc78422ca26]$ otool -l BoringSSL.framework/BoringSSL | grep bitcode
I have a static library that is built by other company. I want to know if it's a static library containing bitcode, which command can detect it in terminal?
3:02 PM
上記コマンドでヒットしないのにたいして、
3:03 PM
Cocoapodsを使用したプロジェクトで、ビルド成果物の中にある方の同じファイルについてしらべると ヒットする [omochi@omochi-iMacPro FirebaseFirestore.framework]$ pwd /Users/omochi/Library/Developer/Xcode/DerivedData/FirestoreExample-cmhhteuhybqvgqdlydndtculrncl/Build/Products/Debug-iphoneos/FirebaseFirestore/FirebaseFirestore.framework [omochi@omochi-iMacPro FirebaseFirestore.framework]$ otool -l FirebaseFirestore | grep bitcode | wc 352 704 7392
3:03 PM
ということからです。
3:03 PM
Cocoapodsを使用しているプロジェクトのほうだと、Build Settingsをみても Enable Bitcode = YES になっています。