当前位置: 首页 > article >正文

Xcode 更新后 Version 14.3.1报错

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

Xode版本和pod版本不一致导致,改成一致就可以了

放在podfile文件里,最后一个pod,和最后一个end中间

 
Showing Recent Errors Only
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
 
 

M1芯片报错:building for iOS Simulator, but linking in object file built for iOS, for architecture arm64

打开路径:一级目录 -> PROJECT -> 项目名 -> Build Settings -> Excluded Architectures 里面在DebugRelease模式下,分别添加:Any iOS Simulator SDK -> arm64

Pod添加arm64:打开路径:左侧Pods一级目录 -> PROJECT -> Pods -> Build Settings -> Excluded Architectures 里面在DebugRelease模式下,分别添加:Any iOS Simulator SDK -> arm64

 

 


http://www.kler.cn/a/37707.html

相关文章:

  • 路径规划算法:基于袋獾优化的路径规划算法- 附代码
  • [桌面运维] 显示器 色准,色域,色深,分辨率,带宽,刷新率的基本概念,图像呈现的基本原理
  • 【算法第二天7.14】移除链表元素,设计链表,反转链表
  • Inkscape扩展脚本入门
  • STL源码刨析_vector
  • Pytorch基本使用—参数初始化
  • Spring Boot使用DataFreezer操作Aerospike
  • 确定Linux虚拟机需要安装哪个架构的应用
  • mongdb安全认证详解
  • Jenkins Pipline使用SonarScanner 检查 VUE、js 项目 中遇到的Bug
  • 渲染流程(上):HTML、CSS和JavaScript,是如何变成页面的?
  • Flutter:EasyLoading(loading加载、消息提示)
  • MySQL-分库分表详解(三)
  • 三菱PLC上位机测试
  • 100种思维模型之安全边际思维模型-92
  • 第五十八章 开发Productions - ObjectScript Productions - 测试和调试Production
  • 《计算机网络--自顶向下方法》第四章--网络层:数据平面
  • c# GDI+绘图的应用-多边形
  • 【C++刷题集】-- day4
  • 分布式锁与同步锁