问题:

升级到XCode 14.3之后,编译Minimum Deployments为iOS 11以下项目报错----

Error: file not found: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/arc/libarclite_iphonesimulator.a

原因:

Xcode 14仅支持构建iOS 11的部署目标。libarclite是旧版本操作系统所必需的,但现在已经过时了,并且文件在XCode 14.3中已经被删除。

方案:

1、苹果推荐:修改支持目标到iOS 11及以上

注意:如果使用pod,pod中的第三方框架也需要修改,在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

在终端cd到项目目录,执行pod install --repo-update(或者删了项目中pod相关文件直接pod install)

2、在旧版XCode中找到文件再加回去

路径:> /Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/arc/

Logo

开放原子开发者工作坊旨在鼓励更多人参与开源活动,与志同道合的开发者们相互交流开发经验、分享开发心得、获取前沿技术趋势。工作坊有多种形式的开发者活动,如meetup、训练营等,主打技术交流,干货满满,真诚地邀请各位开发者共同参与!

更多推荐