最近把Xcode 升级到14.3 发现pod 不是很适配,出现报错 File not found: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xct
最近把Xcode 升级到14.3 发现pod 不是很适配,出现报错
File not found: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/arc/libarclite_iphoneos.a
此处提供两种解决方案:
同样的代码在Xcode 14.2 中就没有问题,通过去查找,发现barclite_iphoneos.a 在xcode 14.3中并没有,在Xcode 14.2中是有的;“然后把14.2的目录文件arc/整个拷贝到14.3的Xcode应用目录里。”能将项目跑起来,有未知风险(不推荐)
在pod 文件里添加下面代码,放在pod 最后一个end前面 ,然后pod install 一下,问题解决(原理:感觉就是Xode版本和pod版本不一致导致,改成一致就可以了)(推荐)
Showing Recent Errors Onlypost_install do |installer| installer.generated_projects.each do |project| project.targets.each do |target| target.build_configurations.each do |config| config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '11.0' end end endend
来源地址:https://blog.csdn.net/qq_42924450/article/details/130258741
--结束END--
本文标题: Xcode 14.3 报错 ..../XcodeDefault.xctoolchain/usr/lib/arc/libarclite_iphoneos.a
本文链接: https://lsjlt.com/news/419616.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-01-21
2023-10-28
2023-10-28
2023-10-27
2023-10-27
2023-10-27
2023-10-27
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0