SDK does not contain ‘libarclite‘ at the path ‘/Applications/Xcode.app/Contents/Developer/Toolchains

这篇具有很好参考价值的文章主要介绍了SDK does not contain ‘libarclite‘ at the path ‘/Applications/Xcode.app/Contents/Developer/Toolchains。希望对大家有所帮助。如果存在错误或未考虑完全的地方,请大家不吝赐教,您也可以点击"举报违法"按钮提交疑问。

升级到Xcode 15运行项目报错,报错信息如下:
SDK does not contain 'libarclite' at the path '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/arc/libarclite_iphonesimulator.a'; try increasing the minimum deployment target

低版本也会有这个错误,应该是依赖包少了点东西。

第一步:

  1. 下载libarclite 文件

第二步:

前往文件夹 /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/

打开cmd,黑色的那个

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

第三步:

 将下载的arc 文件夹复制到lib文件夹下

即:直接将下载好的解压后粘贴进去即可。

参考文章:

Xcode 15 libarclite 缺失问题_sdk does not contain 'libarclite' at the path '/ap-CSDN博客文章来源地址https://www.toymoban.com/news/detail-838557.html

到了这里,关于SDK does not contain ‘libarclite‘ at the path ‘/Applications/Xcode.app/Contents/Developer/Toolchains的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处: 如若内容造成侵权/违法违规/事实不符,请点击违法举报进行投诉反馈,一经查实,立即删除!

领支付宝红包赞助服务器费用

相关文章

  • iOS Xcode 升级Xcode15报错: SDK does not contain ‘libarclite‘

    iOS Xcode 升级Xcode15报错: SDK does not contain \\\'libarclite\\\' 一、仔细查看报错代码: 这个路径: 缺少文件, 那么进入这个路径进行查看 报错的情况下没有arc文件夹,也没有libarclite_iphonesimulator.a文件, 1、新建arc文件夹 2、下载:https://github.com/kamyarelyasi/Libarclite-Files中的libarclite_iphonesimulator.a

    2024年01月19日
    浏览(12)
  • 关于更新xcode后,项目的报错Showing Recent Issues SDK does not contain libarclite_iphonesimulator.a

    笔者最近在update Mac OSX 系统以后Xcode运行项目的时候出现not contain …/libarclite_iphonesimulator.a 的报错。简而言之就是对应的运行目录下缺省了对应静态库。那么接下来就简单了从网络上找回这个库或者从你的好友让他发给你就完事了。 那么这里记录一下解决问题的步骤 打开fi

    2024年02月04日
    浏览(28)
  • CMake Error: The source directory “XXX“ does not appear to contain CMakeLists.txt

    CMake Error: The source directory “XXX“ does not appear to contain CMakeLists.txt

    正常CMakeLists.txt文件是在项目根目录下,而我们在项目的build文件夹中进行cmake,导致找不到文件,解决方法,命令行后加两个点表示上级目录,关键就是这两个点:

    2024年02月04日
    浏览(11)
  • cannot be resolved to absolute file path because it does not reside in the file system 问题解决

    cannot be resolved to absolute file path because it does not reside in the file system 问题解决

    在Springboot中利用Resource来获取文件并在前端返回该文件, 本地测试正常, 打包到远程报错: cannot be resolved to absolute file path because it does not reside in the file system 紧接上一个问题: 项目打包成 jar 后包无法读取src/main/resources下文件, 在Springboot打包之后, 无法读取到jar包内的文件, 因此

    2023年04月18日
    浏览(15)
  • 解决 Could not install from “***“ as it does not contain a package.json 报错

    解决 Could not install from “***“ as it does not contain a package.json 报错

    在平时安装/下载依赖时候 控制栏出现如下报错时 解释:无法从“Filesnodejsnode_cache_npx14536”安装,因为它不包含package.json文件。 原因分析: 可能是我们的路径不存在/不合理 解决方法: 执行: npm config get cache 查看到我们的node路径为 D:Program Filesnodejsnode_cache 很明显看到Program

    2023年04月17日
    浏览(11)
  • git bash 报错:error: key does not contain a section: –global

    今天在使用 git config –global -l 命令查看git全局配置的时候报错 error: key does not contain a section: –global 经过排查后发现可能是自己在什么时候无意中修改了git的config文件 在git bash中 输入命令 回车 进入config文件编辑页面,就是linux的vi编辑器修改文件,按 i 进入编辑模式,贴入以

    2024年02月14日
    浏览(24)
  • The Node.js path can contain only letters,digits,periods (.),underscores...

    The Node.js path can contain only letters,digits,periods(.),underscores(_), hyphens (-), colon (:) and backslash(); 解决办法: DevEco Studio设置Nodejs提示路径只能包含英文、数字、下划线等-CSDN博客 补充: 文件路径:C:Users***AppDataRoamingHuaweiDevEcoStudio3.1optionsother.xml 也可以在DevEco Studio中,选择路径

    2024年02月04日
    浏览(14)
  • 解决Mybatis查询错误:Mapped Statements collection does not contain value for xxx

    解决Mybatis查询错误:Mapped Statements collection does not contain value for xxx

    新手在使用mybatis注解开发的时候,往往容易出现各种错误。 上述提到的“Mapped Statements collection does not contain value for xxx”就是常见的一种,出现这个错误表明mybatis没有找到你所使用的查询语句。 除了忘记导入mapper这种情况外,需要注意的是,使用纯注解开发还不能使用包名

    2024年02月15日
    浏览(13)
  • 解决The Node,js path can contain only letters, digits, periods (), underscores ( ), hyphens (-), colon

    解决The Node,js path can contain only letters, digits, periods (), underscores ( ), hyphens (-), colon

    安装 HUAWEI DevEco Studio 后配置 Node.js 环境时可能会报: The Node,js path can contain only letters, digits, periods (), underscores ( ), hyphens (-), colon () and backslash () 原因可能是因为安装路径中包含了 空格 ,可能大部分人习惯将软件安装在 Program Files 目录下,此时只要将 nodejs 的安装目录移到根

    2024年04月12日
    浏览(57)
  • 【Unity iOS打包】The bundle at ‘***.app/Frameworks/UnityFramework.framework‘ contains disallowed file ··

    【Unity iOS打包】The bundle at ‘***.app/Frameworks/UnityFramework.framework‘ contains disallowed file ··

    Unity导出XCode工程,打包上传AppleStoreConnect, Invalid Bundle. The bundle at \\\'AnimalsBAMBAM.app/Frameworks/UnityFramework.framework\\\' contains disallowed file \\\'Frameworks\\\'. (ID: 460dd08b-9828-4396-9d48-ca37cc7d1af5) 1. \\\"Always Embed Swift Standard Libraries\\\"设置为No: 2. 删除***.xcarchive(显示包内容)/Products/Applications/***.app(显示包

    2024年04月16日
    浏览(10)

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

博客赞助

微信扫一扫打赏

请作者喝杯咖啡吧~博客赞助

支付宝扫一扫领取红包,优惠每天领

二维码1

领取红包

二维码2

领红包