iOS开发-Build operation failed without specifying any errors. 问题fix

Build operation failed without specifying any errors. Individual build tasks may have failed for unknown reasons.

verify final result code for completed build operationBuild operation failed without specifying any errors. Individual build tasks may have failed for unknown reasons.One possible cause is if there are too many (possibly zombie) processes; in this case, rebooting may fix the problem.Some individual build task failures (up to 12) may be listed below.


Xcode报错如图: 

xcode报错图.png


检查发现本地mac系统上cocoapods版本是最新的1.4.0(2018年1月24日)

//删除1.4.0包
sudo gem uninstall cocoapods -v 1.4.0

//然后安装指定版本的Cocoapods
sudo gem install cocoapods -v 1.3.1

//检查版本
pod --version
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8

然后重新拉代码,pod update 
编译运行OK!



猜你喜欢

转载自blog.csdn.net/runtime233/article/details/80695848