- Xcode12 Cocoapods报错The linked fr
- Xcode12 Cocoapods报错The linked fr
- xcode12打包 'libv8_monolith.a 报错(T
- 【报错】xcode12 :The linked library
- 通过CocoaPods导入SDWebImage,使用加载方法时崩
- XCode12编译报错:The linked framework
- Xcode12报错The linked framework 'x
- 【报错】xcode12 : linked library 'li
- 203. Remove Linked List Elements
- 升级Xcode12后,模拟器run项目No architectu
报错信息:
The linked framework 'Pods_xxx.framework' is missing one or more architectures required by this target: arm64.
原因:
在Xcode11时代,Mac电脑使用的是因特尔代的芯片,架构是x86。但是到了Xcode12时代,苹果将会发布基于arm架构的电脑,就是和iphone、iPad一样架构的芯片。所以Xcode12的模拟器现在就不再对x86_64默认支持了,需要手动添加。
解决方案:
在 Bulid Setting
中的User-Defined
下VALID_ARCHS
添加x86_64
网友评论