Using Clang Tools

Qt Creator integrates the following Clang tools for finding problems in C, C++, and Objective-C source code by using static analysis:

  • Clang-Tidy, which has diagnostics and fixes for typical programming errors, such as style violations or interface misuse.
  • Clazy, which helps Clang understand Qt semantics. It displays Qt related compiler warnings, ranging from unnecessary memory allocation to misuse of API and has refactoring actions for fixing some of the issues.

Note: The Clang static analyzer checks are a part of Clang-Tidy. To use the checks, you must create a custom configuration for the Clang tools and enable them for Clang-Tidy.

Qt Creator comes with the Clang tools, so you do not need to set them up separately.

In addition to running the tools to collect diagnostics, you can select to load diagnostics from YAML files that you exported using the -export fixes option.

Running Clang-Tidy and Clazy

To run Clang-Tidy or Clazy to analyze the currently open file:

  • Select the (Analyze File) button on the editor toolbar, and then select the tool: Clang-Tidy or Clazy.
  • Select Tools > C++ > Analyze Current File with Clang-Tidy or Analyze Current File with Clazy.

To run Clang-Tidy or Clazy to analyze an open project:

  1. Select Analyze > Clang-Tidy or Clazy.
  2. Select the files to apply the checks to.

    {Files to Analyze dialog}

  3. Select Analyze to start the checks.

The Clang-Tidy or Clazy view shows the issues:

{Clang-Tidy view}

Note: If you select Debug in the mode selector to open the Debug mode and then select Clang-Tidy or Clazy, you must select the (Start) button to open the Files to Analyze dialog.

Double-click an issue to move to the location where the issue appears in the code editor.

If a fixit exists for an issue, you can select the check box next to the issue to schedule it for fixing. Select the Select Fixits check box to select all fixits. To see the status of an issue, hover the mouse pointer over the icon next to the check box.

To see more information about an issue that is marked with the icon, hover the mouse pointer over the line.

To disable checks of a particular type either globally or for a particular project, select Disable This Check or Disable These Checks in the context menu.

Select the button to customize Clang diagnostics for the current project.

{Clang Tools customized settings}

To restore the global settings, select Restore Global Settings. To view and modify the global settings, select the link in Use global settings. To open the Clang static analyzer, select Go to Analyzer.

Configuring Clang Tools

To configure Clang diagnostics globally for Clang tools:

  1. Select Edit > Preferences > Analyzer > Clang Tools.

    {Clang Tools preferences}

  2. In the Clang-Tidy and Clazy-Standalone fields, set the paths to the executables to use.
  3. To build the project before running the Clang tools, select the Build the project before analysis check box. The Clang tools do not require that you build the project before analysis, but they might display misleading warnings about files missing that are generated during the build. For big projects, not building the project might save some time.
  4. To disable automatic analysis of open documents, deselect the Analyze open files check box.
  5. In the Parallel jobs field, select the number of jobs to run in parallel to make the analysis faster on multi-core processors.
  6. The Diagnostic configuration field shows the checks to perform. Click the value of the field to open the Diagnostic Configurations dialog, where you can select and edit the checks to perform.

    {Diagnostics Configuration dialog}

  7. Select Copy to copy the selected diagnostics for editing.

    {Copy Diagnostic Configuration dialog}

  8. In the Diagnostic configuration name field, give the configuration a name, and then select OK.
  9. In the Clang Warnings tab, select the Use diagnostic flags from the build system check box to forward diagnostic flags, such as warning flags, from the build system to the Clang code model for displaying annotations in the code editor.
  10. In the Clang-Tidy Checks tab, select Select Checks to select the checks to perform. To filter the checks, enter a string in the Filter by name field.

    {Clang-Tidy Checks tab}

    For more information about the available checkers, see Clang Static Analyzer documentation.

  11. To edit the selected check as plain text, select Edit Checks as String.
  12. In the Clazy Checks tab, select the level of Clazy checks to perform.

    {Clazy Checks tab}

  13. In the Filters field, select topics to view only checks related to those areas in the Checks field. To filter the checks in the selected areas, enter a string in the Filter by name field.
  14. To view all checks again, select Reset Filter.
  15. To view more information about the checks online, select the Web Page links next to them.

To suppress diagnostics, select Suppress This Diagnostic in the context menu. To view the suppression list for a project and to remove diagnostics from it, select Projects > Project Settings > Clang Tools.

Selecting Clazy Check Levels

The Clazy checks are divided into levels from 0 to 3. The checks at level 0 are very stable and show hardly any false positives, while the checks at level 3 are experimental. You can select the checks to perform at each level. To include the checks from the lower levels automatically, select the Enable lower levels automatically check box.

Creating Clang-Tidy Configuration Files

Clang-Tidy reads the configuration for each source file from a .clang-tidy file located in the closest parent directory of the source file. If any configuration options have a corresponding command-line option, the command-line option takes precedence. The effective configuration can be inspected using -dump-config.

Qt Creator creates the configuration for you based on the checks you select. To store the checks in file format, you can create a .clang-tidy file, as follows:

  1. Select Edit Checks as String and copy the contents of the field.
  2. Pipe the output of clang-tidy -dump-config into a file named .clang-tidy. For example: clang-tidy -checks=-*,bugprone-*,cppcoreguidelines-avoid-* -dump-config > .clang-tidy
  3. Move the .clang-tidy file to the parent directory of the sources.

To add more checks using Qt Creator later on, copy the checks from your .clang-tidy file into the Edit Checks as String field, select additional checks, and copy-paste the contents of the field to the .clang-tidy file.

© 2023 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.