迦太基设置失败,代码为65

Mar*_*cus 9 ios swift alamofire swifty-json carthage

我正在新机器上安装迦太基.

$ brew install Carthage

[in project root] $ emacs Cartfile

# Alamofire
github "Alamofire/Alamofire"

# SwifyJSON
github "SwiftyJSON/SwiftyJSON"
Run Code Online (Sandbox Code Playgroud)

$ carthage update

*** Fetching SwiftyJSON
*** Fetching Alamofire
*** Checking out Alamofire at "1.2.3"
*** Checking out SwiftyJSON at "2.2.0"
*** xcodebuild output can be found in /var/folders/8n/044rh7_j6nlcdtsb3cgp_snc0000gn/T/carthage-xcodebuild.log
*** Building scheme "Alamofire iOS" in Alamofire.xcworkspace
A shell task failed with exit code 65:
** BUILD FAILED **


The following build commands failed:
    CompileSwift normal x86_64 [project root]/Carthage/Checkouts/Alamofire/Source/Request.swift
    CompileSwift normal x86_64 [project root]/Carthage/Checkouts/Alamofire/Source/ResponseSerialization.swift
    CompileSwift normal x86_64 [project root]/Carthage/Checkouts/Alamofire/Source/Manager.swift
    CompileSwift normal x86_64 [project root]/Carthage/Checkouts/Alamofire/Source/Alamofire.swift
    CompileSwift normal x86_64 [project root]/Carthage/Checkouts/Alamofire/Source/Validation.swift
    CompileSwiftSources normal x86_64 com.apple.xcode.tools.swift.compiler
Run Code Online (Sandbox Code Playgroud)

(6次失败)

moh*_*sen 1

 Building scheme "Alamofire iOS" in Alamofire.xcworkspace
Run Code Online (Sandbox Code Playgroud)

对于获取之前的版本,将其写入迦太基

github "Alamofire/Alamofire" >= 4.2.0 
Run Code Online (Sandbox Code Playgroud)

请参阅github 中的realese项目以选择适合您的 swift 版本的版本

您也可以在运行 carthage 示例时选择平台

carthage update --platform iOS
Run Code Online (Sandbox Code Playgroud)