今天升级了一下Xcode11 beta4之后,发现项目编译失败,并且报如下错误:
<unknown>:0: error: unknown argument: '-w'
<unknown>:0: error: unknown argument: '-Xanalyzer'
<unknown>:0: error: unknown argument: '-analyzer-disable-all-checks'
Command CompileSwiftSources failed with a nonzero exit code
后来查看网上资料是,使用了pod的问题,不过pod已经修复这个编译失败问题,我们需要做的就是更新pod了。
更新pod步骤:(如果第一步没有报错误的话,直接忽略2、3、4步,直接执行5)
1、sudo gem update --system // 先更新gem,国内需要切换源
2、gem sources --remove https://rubygems.org/
3、gem sources --add https://ruby.taobao.org
4、 gem sources -l
\*\*\* CURRENT SOURCES \*\*\*https://ruby.taobao.org/
5、sudo gem install cocoapods// 安装cocoapods
6、pod setup
如果升级pod过程中遇到以下错误提示:
ERROR:While executing gem ... (Errno::EPERM)
Operation not permitted ...
重新终端输入命令:
sudo gem install cocoapods -n /usr/local/bin
升级完pod之后,在自己项目目录中,执行pod install命令之后重新编译项目,就不会有开头说的那个错误提示了。
希望这篇文章能快速帮助升级Xcode11 beta4编译失败问题的朋友们!!!
网友评论