web-dev-qa-db-ja.com

カルタゴの変更Swiftバージョン

フレームワークの構築に使用されるCarthage Swiftバージョンを変更することは可能ですか?

プロジェクトをSwift 3(Xcode 8ベータ版)に移行しようとしていますが、プロジェクトをコンパイルできないのはサードパーティのライブラリだけです。 Swift 3に特定のブランチを使用しているときに、Carthageは新しいSwift構文に関するエラーをスローします。

どんな助けも感謝します!

21
Nadav96

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を実行します

39
bobDevil

CarthageのGitHubには、XCode 8と互換性の問題に関するバグレポートがあります。リポジトリでその問題のスレッドをフォローしたい場合があります。

https://github.com/Carthage/Carthage/issues/144

Carthageのレポで報告されている別の関連する問題は次のとおりです。 https://github.com/Carthage/Carthage/issues/1445

0
nbloqs