フレームワークの構築に使用されるCarthage Swiftバージョンを変更することは可能ですか?
プロジェクトをSwift 3(Xcode 8ベータ版)に移行しようとしていますが、プロジェクトをコンパイルできないのはサードパーティのライブラリだけです。 Swift 3に特定のブランチを使用しているときに、Carthageは新しいSwift構文に関するエラーをスローします。
どんな助けも感謝します!
Carthageは、コマンドラインツールxcodebuild
を使用してフレームワークを構築します。コマンドラインシステムで使用されるXcodeのバージョンは、ツールxcode-select
で選択された値によって決まります
Usage: xcode-select [options]
Print or change the path to the active developer directory. This directory
controls which tools are used for the Xcode command line tools (for example,
xcodebuild) as well as the BSD development commands (such as cc and make).
Options:
-h, --help print this help message and exit
-p, --print-path print the path of the active developer directory
-s <path>, --switch <path> set the path for the active developer directory
--install open a dialog for installation of the command line developer tools
-v, --version print the xcode-select version
-r, --reset reset to the default command line tools path
Developer SDKディレクトリを指す必要があるため、--print-path
を使用して、現在指している場所を確認できます。
xcode-select --print-path
/Applications/Xcode.app/Contents/Developer
それを変更するには、単にSudo xcode-select --switch <path-to-beta-xcode>/Contents/Developer
を実行します
CarthageのGitHubには、XCode 8と互換性の問題に関するバグレポートがあります。リポジトリでその問題のスレッドをフォローしたい場合があります。
https://github.com/Carthage/Carthage/issues/144
Carthageのレポで報告されている別の関連する問題は次のとおりです。 https://github.com/Carthage/Carthage/issues/1445