美文网首页
building for iOS Simulator, but

building for iOS Simulator, but

作者: Coderliszt | 来源:发表于2021-04-24 22:33 被阅读0次

    <article class="_2rhmJa">

    这个M1芯片下Xcode 编译错误的解决方案:
    Xcode版本:12.3
    M1芯片的Macbook pro

    在选中模拟器进行编译的时候,会报如下类似错误。

    building for iOS Simulator, but linking in object file built for iOS, file 'xxx/Pods/WechatOpenSDK/WeChatSDK1.8.5/libWeChatSDK.a' for architecture arm64

    这个问题目前应该只出现在M1芯片的Mac上,似乎又是一个兼容性问题,因为M1芯片的Mac本身就是arm架构,所以模拟器自然也支持arm架构。。。
    目前的解决方案是,在编译设置中,对模拟器排除 arm64

    第一步:在项目的编译设置中添加排除说明

    image

    第二步:在podfile添加,以免pod install时覆盖需要在pod工程中的设置

    post_install do |installer|
        installer.pods_project.targets.each do |target|
            target.build_configurations.each do |config|
                config.build_settings["EXCLUDED_ARCHS[sdk=iphonesimulator*]"] = "arm64"
            end
        end
    end
    
    

    </article>

    3人点赞

    iOS

    作者:_我和你一样
    链接:https://www.jianshu.com/p/0fc2a6402870
    来源:简书
    著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。

    相关文章

      网友评论

          本文标题:building for iOS Simulator, but

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