自己的APP项目,M1芯片电脑,在iOS 11系统的模拟器可以运行,iOS 11的真机、iOS15的真机可以运行,但是 iOS15模拟器运行报错:
Undefined symbols for architecture arm64:
或者
Framework not found XXX
问题排查的经过:
1. 新建一个项目,不装pod的情况下,iOS 11
和iOS 15
的模拟器
都是可以运行的。
2. 新建一个项目,装pod,不引入任何pod库的情况下,iOS 11模拟器
运行成功后,切换到iOS 15模拟器
运行失败,Xcode 执行clean之后,iOS 15模拟器
能运行成功,但切换到iOS 11设备的模拟器后运行失败。报错信息:
iOS 11模拟器不能运行报的错:x86_64缺失
The linked framework 'Pods_xxx.framework' is missing one or more architectures required by this target: x86_64.
iOS 15不能运行报的错: arm64缺失
The linked framework 'Pods_xxx.framework' is missing one or more architectures required by this target: arm64.
这个问题的解决办法是:修改Pods 的设置Build Active Architecture Only
中Debug为NO,执行clean之后都能运行了(项目本身的设置也要这样设置)。但是我们一般不这样做,我们应该在选择运行到低版本模拟器时手动clean一下再运行,因为这样设置后活跃的Active的架构才去编译,代码编译的速度会更快。
3. 确认了“2”中的修改方法后,我的项目仍然不能跑起来,于是在设置中看到Excluded Architecture
里面写了arm64
,即除了arm64
以外的架构,所以我把这个设置去掉之后就变得可以运行了。
使用上述操作的话,我们再次执行pod install
之后,设置又改回去了,所以我们最终的解决办法是在Podfile中加上
inhibit_all_warnings!
install! 'cocoapods',
disable_input_output_paths: true, #pod库每次修改代码,主工程无需再次pod install就能看到代码
generate_multiple_pod_projects: true # 让每个pod依赖库成为一个单独的项目引入,这样大大提升了编译速度
post_install do |installer|
installer.generated_projects.each do |project|
project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings["EXCLUDED_ARCHS[sdk=iphonesimulator*]"] = ""
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '11.0'
config.build_settings['ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES'] = 'NO'
if config.name == 'Debug'
config.build_settings['ONLY_ACTIVE_ARCH'] = 'NO'
else
config.build_settings['ONLY_ACTIVE_ARCH'] = 'NO'
end
end
end
end
end
4. 上述操作下如果存在有的pod导入运行不了,报错
building for iOS Simulator, but linking in object file built for iOS, for architecture arm64
==》 翻译:为iOS模拟器构建,但在为iOS构建的对象文件中链接,用于架构arm64。
那么这就是我们上一步中去掉了排除了arm64
导致的,所以我们遇到这个情况需要项目工程和pod工程都排除arm64
。做法就是项目工程中的设置Excluded Architecture
中模拟器SDK为arm64
,如下图,上述的Podfile中的下面这句需要改为:
config.build_settings["EXCLUDED_ARCHS[sdk=iphonesimulator*]"] = "arm64"
然后再次pod install
后clean一下,可以运行了。
如果项目中还有推送扩展等其它的工程的话,也是要跟主工程一样设置架构。
我们根据报错情况来选择3或者4的方法让自己项目能跑起来!
如果能运行的话,也可以试着去掉podfile
中下面代码, 如果能运行的话,就不用下面的了。
if config.name == 'Debug'
config.build_settings['ONLY_ACTIVE_ARCH'] = 'NO'
else
config.build_settings['ONLY_ACTIVE_ARCH'] = 'NO'
end
5. 对于库的编写者的podspec文件写法
podspec文件应该添加下面的行
s.pod_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64' }
s.user_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64' }
6. 真机设置的架构情况
- i386是针对intel通用微处理器32位处理器
- x86_64是针对x86架构的64位处理器
- 模拟器32位处理器测试需要i386架构
- 模拟器64位处理器测试需要x86_64架构
- 真机32位处理器需要armv7,或者armv7s架构
- 真机64位处理器需要arm64架构
参考阅读
Xcode12 Build For ios Simulator arm64
Podfile语法参考
开启 Cocoapods 新选项,加快项目索引速度