Xcode更新到16.4后出现错误,当我更新Xcode时发生了这个错误[关闭]

8hhllhi2  于 2023-04-07  发布在  其他
关注(0)|答案(1)|浏览(195)

**已关闭。**此问题需要debugging details。当前不接受答案。

编辑问题以包括desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem。这将有助于其他人回答问题。
4天前关闭。
Improve this question
ld:未找到文件:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/arc/libarclite_iphonesimulator.aclang:error:链接器命令失败,退出代码为1(使用-v查看调用)
我需要知道如何解决它。

x8diyxa7

x8diyxa71#

如果您使用的是Pod,请尝试将每个库的iOS部署目标设置为11.0。
您可以将代码config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '11.0'添加到您的podfile中,如下所示:

post_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
  end
end

相关问题