本文主要是介绍error: Abort trap: 6 (in target ‘xxx‘ from project ‘Pods‘),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
将Xcode升级到13.3后,对项目打包时报错。
以SKPhotoBrowser的报错举例:
报错:
error: Abort trap: 6 (in target 'SKPhotoBrowser' from project 'Pods')
remark: Incremental compilation has been disabled: it is not compatible with whole module optimization
Command CompileSwiftSources failed with a nonzero exit code
解决方法:
在Pods选中SKPhotoBrowser,到Build settings -> Swift Compiler - code generation -> Optimization Level
将Optimization Level设置为No Optimization[-Onone]
有时,上面那样修改没解决问题,可以如下面这般将第三方的版本设定为11以上。
这篇关于error: Abort trap: 6 (in target ‘xxx‘ from project ‘Pods‘)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!