当前位置:网站首页>XCODE12 在使用模拟器(SIMULATOR)时编译错误的解决方法
XCODE12 在使用模拟器(SIMULATOR)时编译错误的解决方法
2022-08-05 08:45:00 【今人不见古时月,今月曾经照古人】
Xcode12 上使用模拟器编译项目时,出现错误。同样的代码在Xcode11则不会有问题。Xcode12 在使用模拟器(Simulator)时编译错误的解决方法
一些错误如下:
No such modules (import installed pods)
Cocoapods post-build step with the script they install issue -> Pods/Target Support Files/Pods-All-Apps-XXX/Pods-All-Apps-XXX-frameworks.sh: line 141: ARCHS[@]: unbound variable
‘ObjCheaderFile.h’ file not found. (ObjC Headers in bridging file)



为什么会出现这些错误?
在查阅Xcode12的升级文档,我们找到如下内容:

1、Xcode11 项目中模拟器会编译为x86_64,但Xcode12的模拟器基于苹果Apple Silicon architecture执行,需要编译为arm64运行在模拟器上。许多第三方库(如Firebase,AFNetworking等)并未提供Xcode12版本的更新支持,导致报错。
2、Xcode12 开始移除编译设置(Bulid Settings)中的 Valid Architectures的宏定义。当项目使用Xcode12打开时候,会在User-Defines(项目的Bulid Settings里面)中自动生成VALID_ARCHS宏定义。如果旧项目存在于此冲突的宏定义,会导致编译失败。
如何修复?
第一步:添加 arm64 到 simulator architecture 中。主项目和pod项目都需要。
在主项目和pod项目的PROJECT的Build Settings中,搜索Excluded Architecture ,添加 Any iOS Simulator SDK,value填入 arm64


注意:在pod项目的build setting是cocopod自动生成的,本次修改在下次更新第三方库时候会被覆盖,可以添加脚本在Podfile中,防止每次安装和更新都需要手动修改。
post_install do |installer|
installer.pods_project.build_configurations.each do |config|
config.build_settings["EXCLUDED_ARCHS[sdk=iphonesimulator*]"] = "arm64"
end
end
第二步:在主项目和pod项目的PROJECT的Build Settings中,删除VALID_ARCHS(整个删除,不能只删除value留下Key

本文转自他人!
原文链接:Xcode12 在使用模拟器(Simulator)时编译错误的解决方法_HDLX刘乔泓的博客-CSDN博客_simulator模拟器error030084
边栏推荐
- 学习笔记14--机器学习在局部路径规划中的应用
- The Coolest Kubernetes Network Solution Cilium Getting Started Tutorial
- XSS靶机通关以及XSS介绍
- 【无标题】目录
- 创业者如何吸引风险投资商
- P1103 书本整理
- D2--FPGA SPI interface communication2022-08-03
- Why is pnpm hitting npm and yarn dimensionality reduction?
- iptables实现网络限制下ntp自定义端口同步时间
- How to make a puzzle in PS, self-study PS software photoshop2022, PS make a puzzle effect
猜你喜欢
随机推荐
SQL语句查询字段内重复内容,并按重复次数加序号
love is a sad song
[转帖]嫁人一定要嫁工资至少比你高3571.4元的男士
Embedded practice ---- based on RT1170 transplant memtester to do SDRAM test (25)
Code Audit - PHP
爱情是一部忧伤的乐曲
Embedded Systems: Basic Timers
JS syntax usage
写出了一个CPU占用极高的代码后引发的思考
sphinx匹配指定字段
sql server收缩日志的作业和记录,失败就是因为和备份冲突了吗?
【结构体内功修炼】枚举和联合的奥秘(三)
Thinking after writing a code with a very high CPU usage
Fiddler工具讲解
路由----router
[Structural Internal Power Cultivation] Structural Realization Stages (2)
接口全周期的生产力利器Apifox
全面讲解GET 和 POST请求的本质区别是什么?原来我一直理解错了
数据源对象管理Druid和c3p0
随机码的生成






![[Structural Internal Power Cultivation] Structural Realization Stages (2)](/img/eb/c80e12edbf4a411227be7e33096ed3.png)


