2016-02-28 137 views
2

用於運行(在設備/模擬器上)的編譯和正確執行的構建。但是,當我嘗試構建歸檔文件時,出現以下錯誤:存檔iOS應用程序時出現「分段錯誤:11」(Swift)

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

此錯誤的可能原因是什麼?如果它有助於知道;我使用CocoaPods作爲依賴管理器。

波德文件如下:

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' 
+0

如果您透露正在使用的庫的列表,這將有所幫助。 –

回答

1

我解決了這個錯誤。 誤差在Google地圖最新版本1.12.2 & 我改變

pod 'GoogleMaps' 

pod 'GoogleMaps' , '~> 1.11.1' 

和它的工作。

發生此類錯誤時用蠻力檢查Pod依賴關係。