現象
Xcodeを14.3にアップデートしたら、以下のエラーが出てビルドできない
File not found: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/arc/libarclite_iphoneos.a Linker command failed with exit code 1 (use -v to see invocation)
原因
CocoaPodsで入れたライブラリの「Minimum Deployments」のiOSバージョンが11.0未満だとこうなるらしい
対策
Pods以下の各ライブラリの「Minimum Deployments」のiOSバージョンを11.0以上に設定すればOK
プロジェクトツリーの「Pods」を選択
各ライブラリを選んで、「General」タブの「Minimum Deployments」で11.0以上に設定
コメント