美文网首页
M1 电脑 cocoapods build 报错 Undef

M1 电脑 cocoapods build 报错 Undef

作者: IT言 | 来源:发表于2023-02-13 15:44 被阅读0次

一般Xcode报错 Undefined symbol: OBJC_CLASS$_xxx 时,都是找不到相应文件的路径导致,所以常规的解决办法,就是去build setting 中的文件引用Compile Sources中 重新引用文件,再次运行即可。

而M1的电脑运行时,所有pod的文件都报错,无法找到相应文件,原因是因为当前编译版本无法匹配模拟器,需要更改pod的运行的build设置才可以

首先设置

Project -> buildSettings ->Excluded Architectures 为 arm64

然后在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

相关文章

网友评论

      本文标题:M1 电脑 cocoapods build 报错 Undef

      本文链接:https://www.haomeiwen.com/subject/eutskdtx.html