Sonarqube 为 distutils 构建包装器
Sonarqube build wrapper for distutils
我有一个包含大量 C/C++ 代码的 python 项目,我使用 distutils 来构建该项目。使用 sonarqube 时,我收到以下消息:
By using the build-wrapper-output.bypass=true
property, you'll switch to an "at best" mode that could result in false-positives and false-negatives.
(注意:为清楚起见,对原始消息进行了修改)
使用 distutils 编译时是否可以使用 sonarqube 构建包装器?
是的,SonarC++ build-wrapper 是通用的,您可以将它与 distutils 一起使用。请遵循 sonarqube.com 上的文档,其中提供了有关如何设置 C/C++ 项目分析的示例。
我有一个包含大量 C/C++ 代码的 python 项目,我使用 distutils 来构建该项目。使用 sonarqube 时,我收到以下消息:
By using the
build-wrapper-output.bypass=true
property, you'll switch to an "at best" mode that could result in false-positives and false-negatives.
(注意:为清楚起见,对原始消息进行了修改)
使用 distutils 编译时是否可以使用 sonarqube 构建包装器?
是的,SonarC++ build-wrapper 是通用的,您可以将它与 distutils 一起使用。请遵循 sonarqube.com 上的文档,其中提供了有关如何设置 C/C++ 项目分析的示例。