1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

「Module compiled with Swift x.x.x cannot be imported by the Swift x.x.x compiler」というエラーが出てビルドに失敗する場合の対処

Last updated at Posted at 2020-11-09

目的・背景

初めてiOSアプリの開発プロジェクトに参画。
既存のiOSプロジェクトを読み込んでビルドしようとしたらエラーになったので備忘録として書く。

何が起きたか

既存のiOSプロジェクトをXcodeで読み込んでビルドしようとしたらエラーになった。

Module compiled with Swift 5.1.3 cannot be imported by the Swift 5.1 compiler: /Users/xxxxxxx/Desktop/プロジェクト/Carthage/Build/iOS/Tabman.framework/Modules/Tabman.swiftmodule/x86_64-apple-ios-simulator.swiftmodule

原因

  1. Carthageというライブラリ管理ツールがMacにインストールされていなかった
  2. Command Line Toolsに使用するXcodeを選択していなかった
  3. ソースに含まれるcarthageライブラリのアップデートが出来ていなかった

結論

1. Carthageのインストール

$ brew install carthage

2. Command Line Toolsで任意のXcodeを指定

Xcodeを開いてメニューから[ Xcode > Preferences > Locations ]を開く。
Command Line Toolsのプルダウンで任意のXcodeを選択する。

3. carthageライブラリのアップデート

$ cd プロジェクトのルートパス
$ carthage update --platform iOS
1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?