CLion 2024.1 Help

Valgrind memcheck

Valgrind Memcheck is a tool that detects memory usage problems such as leaks, invalid memory access-s, incorrect memory releases, and undefined value references.

Valgrind integration in CLion works on Linux, macOS, and Windows with WSL (refer to Valgrind on WSL).

Configure Valgrind

  1. Install Valgrind on your system.

  2. In CLion, go to Settings | Build, Execution, Deployment | Dynamic Analysis Tools | Valgrind.

  3. CLion will attempt to detect the Valgrind binary as set in system PATH.

    In case of a non-standard Valgrind location, provide the path manually in the Valgrind executable field.

  4. Specify analysis options or use the default ones.

  5. Optionally, configure the list of the suppression files.

    For example, a suppression file can be used to turn off Valgrind checks for particular libraries.

Valgrind settings

Configure Valgrind on WSL

  1. In Settings | Build, Execution, Deployment | Dynamic Analysis Tools | Valgrind, provide the 'subsystem' path to Valgrind, which is /usr/bin/valgrind by default, instead of the actual Windows location of the Valgrind binary.

  2. Activate a CMake profile connected to the WSL toolchain.

    For this, do one of the following:

    • Set the WSL toolchain as default. This way, it will automatically connect to the default CMake profile:

      cl_wsl_deftoolchain.png
    • Create a separate CMake profile, connect it to the WSL toolchain, and select this profile in the configurations switcher:

      CMake profile for the WSL toolchain

Run targets

To run a target (application or test) with Valgrind Memcheck, do one of the following:

  • Click the gutter icon and select Run 'your_target_name' with Valgrind Memcheck option from the menu:

    cl_runValgrindGutter.png
  • Select the desired Run/Debug configuration and call Run | Run 'your_target_name' with Valgrind Memcheck from the main menu or click the dedicated toolbar icon:

    Running Valgrind from the main toolbar

If Valgrind was not configured previously, CLion will open the configuration dialog.

Explore results

  • When the launch is finished, open the Valgrind tab in the Run tool window.

    Valgrind Memcheck output
  • The left-hand pane shows the list of all problems found by Valgrind Memcheck. Each entry includes the instruction pointer, problematic function name, and (if possible) the source file where the problem is located.

  • In the right-hand pane, you can find full stack frame description and the corresponding code preview (when possible).

Export and import results

  • To export the results, click the Export cl_valgrindexport_b.png icon in the left pane of the Valgrind tab and specify the destination XML file:

    Export Valgrind results

    Note that the Export button is unavailable during execution.

  • To import the results, select Run | Import Valgrind XML Results from the main menu and choose the XML file to import from.

Last modified: 16 April 2024