gpt4 book ai didi

cocoapods - 更新到 Xcode 10.2 后如何修复 "Bus error 10"

转载 作者:行者123 更新时间:2023-12-02 19:22:27 24 4
gpt4 key购买 nike

我将 Xcode 更新到新的稳定版本 10.2v。我尝试构建我的项目并且成功了。当我尝试存档项目(工作区)时,我收到如下屏幕截图所示的错误:

到目前为止我尝试过的:

  1. 将 cocoa pod 更新到最新版本 -> COCOAPODS:1.7.0.beta.3
  2. 清理 DeliveredData 文件夹
  3. 重新安装 Xcode
  4. 删除存储库,再次克隆它并安装 Pod
  5. 从项目中完全删除所有 pod 并将其添加回来

最佳答案

临时解决方法

对我来说,这只是Cache框架。在他们修复该问题之前,您可以针对要用于存档的配置手动将 SWIFT_OPTIMIZATION_LEVEL 设置为 -Onone

CocoaPods

如果您不希望 Cococapods 在每次运行 pod install 时覆盖设置,您甚至可以使用 Podfile

post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
if target.name == 'Cache'
config.build_settings['SWIFT_OPTIMIZATION_LEVEL'] = '-Onone'
end
end
end
end

Note that this is specifically checking for the Cache framework. If you have problems with other frameworks you might want to change or extend this condition.

关于cocoapods - 更新到 Xcode 10.2 后如何修复 "Bus error 10",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55396765/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com