M1 电脑 cocoapods build 报错 Undefined symbol: OBJC_CLASS$_xxx错误的解决方法:
- 问题描述:
M1的电脑运行时,所有pod的文件都报错,无法找到相应文件 - 原因分析:
是因为当前编译版本无法匹配模拟器,需要更改pod的运行的build设置才可以,一般Xcode报错 Undefined symbol: OBJC_CLASS$_xxx 时,都是找不到相应文件的路径导致,所以常规的解决办法,就是去build setting 中的文件引用Compile Sources中 重新引用文件,再次运行即可 - 解决方案:
1、Project -> buildSettings ->Excluded Architectures 为 arm64
2、在 Podfile 中添加:
post_install do |installer|
installer.pods_project.build_configurations.each do |config|
config.build_settings['ONLY_ACTIVE_ARCH'] = 'NO'
config.build_settings['VALID_ARCHS'] = 'arm64 arm64e armv7 armv7s x86_64 i386'
config.build_settings['EXCLUDED_ARCHS[sdk=iphonesimulator*]'] = 'arm64'
end
end
再次pod install
网友评论