美文网首页Pod、carthage库、brew管理
CocoaPods 静态库 pod lib lint `app

CocoaPods 静态库 pod lib lint `app

作者: Theshy | 来源:发表于2021-03-31 11:51 被阅读0次

    xcode12 pod lib lint静态库报错

    ** BUILD FAILED **
        
        
        The following build commands failed:
            Ld ***/Release-iphonesimulator/App.build/Objects-normal/arm64/Binary/App normal arm64
    
    image.png

    解决办法:
    podspec中添加

    s.pod_target_xcconfig = {
            'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64'
        }
    s.user_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64' }
    

    相关文章

      网友评论

        本文标题:CocoaPods 静态库 pod lib lint `app

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