単純なSwiftスクリプトシバンを気にする人がいる場合:
#!/usr/bin/env xcrun --sdk macosx swift
特定のターゲットバージョンが必要な場合
#!/usr/bin/env xcrun --sdk macosx swift -target x86_64-macosx10.11
特定のツールチェーンが必要な場合(Swift 2.3を使用したいがXcode 8を使用している場合など)
#!/usr/bin/env xcrun --toolchain com.apple.dt.toolchain.Swift_2_3 --sdk macosx swift -target x86_64-macosx10.11
Xcode 7.3.1でSwift 2.2を使用する場合は、Xcode 7.3.1が次の場所にあると仮定します /Applications/Xcode7.app
sudo xcode-select -s /Applications/Xcode7.app/
xcrun --sdk macosx swift
これで、デフォルトのアクティブな開発者ディレクトリが変更されたので、次を使用して確認できます。
xcode-select -p
Swift.orgが提供するスナップショットを使用したい場合は、ここのインストールをお見逃しなく。
Xcode iOSプロジェクトからSwiftスクリプトを実行するビルドフェーズで最初に私が答えたとおり