返回顶部
首页 > 资讯 > 移动开发 >iOS pod repo push 报错 ld: file not found: libarclite_iphoneos.a 问题解决方案
  • 910
分享到

iOS pod repo push 报错 ld: file not found: libarclite_iphoneos.a 问题解决方案

ios 2023-10-10 18:10:35 910人浏览 八月长安
摘要

背景 Xcode 升级 14.3 之后,在Xcode 运行项目会收到以下错误 File not found: /Applications/Xcode-beta.app/Contents/Devel

背景

Xcode 升级 14.3 之后,在Xcode 运行项目会收到以下错误

File not found: /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/arc/libarclite_iphoneos.a

项目中可以通过以下方法解决编译错误,就是在 Podfile 中,设置IPHONEOS_DEPLOYMENT_TARGET,代码如下:

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'] = '12.0'               end          end   endend

但是因为项目中有一些私有组件,也引用了一些minimum deployment设置比较低的三方库,会导致我们提交私有组件时,也报如下错误

 /App-exxigwycpikvlpgzpmccfjpmuvkx/Build/Intermediates.noindex/Pods.build/Release-iphonesimulator/YYCateGories.build/Objects-nORMal/x86_64/Binary/YYCategories    ld: file not found: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/arc/libarclite_iphonesimulator.a    clang: error: linker command failed with exit code 1 (use -v to see invocation) ** BUILD FAILED **    The following build commands failed:    Ld /Users/mengruirui/Library/Developer/Xcode/DerivedData/App-exxigwycpikvlpgzpmccfjpmuvkx/Build/Intermediates.noindex/Pods.build/Release-iphonesimulator/YYCategories.build/Objects-normal/x86_64/Binary/YYCategories normal x86_64 (in target 'YYCategories' from project 'Pods')    (1 failure)

解决

方案一

将第三方组件克隆一份放到本地私有仓,修改 minimum deployment,然后依赖我们自己的私有组件

方案二

在这里插入图片描述

  • 打开 Mac 上的 Finder 应用程序,在菜单中找到前往 -> 前往文件夹 输入以下地址,然后前往

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

  • 在该目录下面查看是否有arc文件夹,如果没有该文件夹,则新建文件夹,命名为arc
  • 将下载好的libarclite_iphonesimulator.a 文件,拷贝到arc 文件夹下面
    在这里插入图片描述

来源地址:https://blog.csdn.net/weixin_36162680/article/details/132806345

--结束END--

本文标题: iOS pod repo push 报错 ld: file not found: libarclite_iphoneos.a 问题解决方案

本文链接: https://lsjlt.com/news/427604.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

猜你喜欢
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作