美文网首页
M1 XCode build error: Demo(x86_6

M1 XCode build error: Demo(x86_6

作者: TyroneLin | 来源:发表于2022-04-24 10:48 被阅读0次
image.png

需要更新 workspace 中每个项目的 build settings ,专门为x86_64架构构建iOS模拟器来修复此 bug。
来自 Pod 的项目需要通过 Podfile 的 post_install 更新:

post_install do |installer|
    installer.pods_project.build_configurations.each do |config|
        config.build_settings["ARCHS[sdk=iphonesimulator*]"] = "x86_64"
    end
end

这只更新Pods项目本身。如果任何目标/子项目覆盖了架构,你可能需要使用 installer.generated_pod_targetsinstaller.pod_target_subprojects

相关文章

网友评论

      本文标题:M1 XCode build error: Demo(x86_6

      本文链接:https://www.haomeiwen.com/subject/sjhtyrtx.html