Xcode运行报错:SDK does not contain ‘libarclite‘ at the path

问题:

SDK does not contain 'libarclite' at the path '/Applications/Xcode 16.3.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/arc/libarclite_iphoneos.a'; try increasing the minimum deployment target

解决一

bash 复制代码
# Uncomment the next line to define a global platform for your project
 #platform :ios, '13.0'

target 'RilXXX617-iOS' do
  # Comment the next line if you don't want to use dynamic frameworks
  use_frameworks!

  pod 'SnapKit', '~> 5.0.0'
	...

  post_install do |installer|
    installer.pods_project.targets.each do |target|
      target.build_configurations.each do |config|
        config.build_settings["IPHONEOS_DEPLOYMENT_TARGET"] = "11.0"
      end
    end
  end

end

解决二:

/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/

lib/文件夹,放入arc目录下~libarclite_iphoneos.a

下载路径:libarclite数据包

相关推荐
寒水馨4 小时前
macOS下载、安装openclaw-v2026.7.1(附安装包OpenClaw-2026.7.1.dmg)
macos·大模型·github·开源软件·ai助手·openclaw·gpt-5.6
白玉cfc7 小时前
【iOS】MRC和ARC
macos·ios·cocoa
飞雪金灵7 小时前
mac电脑 Maven下载安装和配置环境变量
macos·maven·maven下载安装·mac电脑环境
雨声不在8 小时前
macos 12使用docker
macos·docker·容器
胡琦博客8 小时前
HarmonyOS 智能工具箱(三):语音交互工具
交互·xcode·harmonyos
一叶龙洲8 小时前
ubuntu26.04 xfce美化成mac
服务器·ubuntu·macos
李小白杂货铺18 小时前
Oh My Zsh 简记
macos·macbook·zsh·主题·插件·oh my zsh·omz
布朗克1681 天前
Go 入门到精通-27-泛型编程
开发语言·golang·xcode·泛型编程
fukai77221 天前
macOS防止休眠的菜单栏小工具
macos
web守墓人1 天前
【go语言】gotar:使用go语言复刻tar命令,并加入7z支持,可独立运行在windows、linux、macos上
linux·macos·golang