美文网首页
OCLint代码静态分析问题

OCLint代码静态分析问题

作者: 纳萨立克 | 来源:发表于2017-11-22 11:30 被阅读295次

    OCLint代码静态分析问题

    oclint: error: one compiler command contains multiple jobs 错误解决

    1. 工程设置
      COMPILER_INDEX_STORE_ENABLE 全部设置成NO
    image
    1. Podfile添加
    post_install do |installer|
        installer.pods_project.targets.each do |target|
            target.build_configurations.each do |config|
                config.build_settings['COMPILER_INDEX_STORE_ENABLE'] = "NO"
            end
        end
    end
    
    

    相关文章

      网友评论

          本文标题:OCLint代码静态分析问题

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