"分段错误:11"归档iOS应用程序(Swift)

时间:2016-02-28 09:23:28

标签: ios xcode swift compiler-errors segmentation-fault

运行构建(在设备/模拟器上)正确编译和执行。但是,当我尝试构建归档时,我会收到以下错误:

clang: error: unable to execute command: Segmentation fault: 11
clang: error: linker command failed due to signal (use -v to see invocation)

出现此错误的可能原因是什么?如果它有助于了解;我使用CocoaPods作为依赖管理器。

Pod文件如下:

pod 'Alamofire', '~> 3.0'
pod 'SDWebImage', '~>3.7'
pod 'PureLayout'
pod 'SwiftyJSON', :git => 'https://github.com/SwiftyJSON/SwiftyJSON.git'
pod 'GoogleMaps'
pod 'QRCodeReader.swift', '~> 5.2.1'

1 个答案:

答案 0 :(得分:1)

我解决了错误。 错误发生在GoogleMaps最新版本1.12.2& 我改变了

pod 'GoogleMaps' 

pod 'GoogleMaps' , '~> 1.11.1'

它有效。

发生此类错误时,使用强力检查Pod依赖关系。