CLion 2023.1 Help

Tutorial: Configure CLion on Windows

On Windows, CLion toolchains include the build tool, C and C++ compilers, debugger executable, and the environment. You can select one of the pre-defined toolchain setups (MinGW, Cygwin, Microsoft Visual C++, or WSL), Remote Host, Docker) or configure a custom toolchain (System):

Windows toolchain options

Watch this video for an overview of Windows toolchain options:

For details on Remote Host toolchains, see Remote with local sources. If you are working with a Docker container, see Docker toolchain.

MinGW

CLion bundles a version of the MinGW toolset for quick setup. The exact version bundled is MinGW-w64 9.0 with languages=c,c++, posix threads, and seh exceptions. You can use this bundled toolchain or switch to a custom MinGW installation.

Install MinGW (optional)

  1. Download and run the MinGW-w64 installer. It provides both 64- and 32-bit options.

  2. In the MinGW-w64 installation wizard, make sure to select the required architecture. Note that the default suggested option is 32-bit.

    Selecting the 64-bit architecture for MinGW
  3. Wait for installation to finish.

Although MinGW-w64 provides both 64- and 32-bit options, you can also install MinGW, the 32-bit-only version.

  1. In the MinGW installation wizard, select the following packages from the Basic Setup list: mingw-developer-tool, mingw32-base, mingw32-gcc-g++, mingw32-msys-base.

    MinGW installation
  2. Wait for installation to finish.

Configure a MinGW toolchain

  1. Go to File | Settings | Build, Execution, Deployment | Toolchains.

    Click Add toolchain and select MinGW to add a new MinGW toolchain.

  2. In the Toolset field, you will see Bundled MinGW, which is the default option. If required, open the field to select from the list of other available installations:

    List of MinGW installations
  3. Wait until the tools detection finishes.

    Bundled MinGW toolchain

  4. Select the Debugger: you can use either bundled GDB, your MinGW GDB, or a custom GDB binary.

  5. If required, specify the script to initialize the environment.

  6. Click Apply when all the tools are set correctly.

Cygwin

  1. Download the Cygwin installer, version 2.8 or later.

  2. Run the installer and select the following packages:

    • gcc-g++

    • gdb

    To select a package, type its name in the Search field and set the version in the New column:

    Cygwin installation

  3. Once the installation is finished, open CLion and go to File | Settings | Build, Execution, Deployment | Toolchains.

  4. Click Add toolchain and select Cygwin to add a new Cygwin toolchain.

    CLion will attempt to detect the Cygwin installation automatically. Check the Toolset field, and specify the path manually if required.

  5. Wait until the tools detection finishes, and click Apply.

    Cygwin toolchain

  6. If required, specify the script to initialize the environment.

Windows Subsystem for Linux

You can use WSL, Windows Subsystem for Linux, as your working environment in CLion on Windows 10 (starting the Fall Creators Update version 1709, build 16299.15).

WSL toolchain enables you to build projects using CMake and compilers from Linux and run/debug on WSL without leavCLionLion running on your Windows machine.

WSL toolchain

Microsoft Visual C++

  1. Install Visual Studio 2013, 2015, 2017, 2019, or 2022 on your system.

  2. In CLion, go to File | Settings | Build, Execution, Deployment | Toolchains.

  3. Click App general add and select Visual Studio from the list of toolchain templates.

  4. Check the Toolset field. CLion will attempt to automatically detect the installed Visual Studio distribution. If the detection fails, set the path to Visual Studio manually.

  5. If required, specify the Architecture (x86, amd64, x86_arm, or another), Platform (store, uwp, onecore, or leave it blank), and Version. To build your project for the selected architecture, CLion will call the script to configure the environment with the specified parameters.

  6. Wait until the tools detection is finished:

    MSVC toolchain
  7. If required, specify the script to initialize the environment.

MSVC compiler

CLion supports the Microsoft Visual C++ compiler that ships with Visual Studio 2013, 2015, 2017, 2019, and 2022.

For the case when your code includes MSVC extensions, CLion provides the support for:

  • __uuidof, __forceinline, __unaligned, and __alignof keywords;

  • pointer type attributes: __ptr32, __ptr64, __uptr, __sptr;

  • MSVC built-in data types: (unsigned) __int8, (unsigned) __int16, (unsigned) __int32, (unsigned) __int64, __wchar_t;

  • additional format specifiers, such as %I32 and %I64;

  • the clang's -fms-extensions flag.

Clang-cl compiler

As an alternative compiler, you can use clang-cl - the MSVC-compatible compiler driver for Clang. CLion supports clang-cl version 8.0 and later.

  1. Install clang-cl from the LLVM site or along with the Visual Studio tools.

    When installed from the LLVM site, the clang-cl binary can be found at the standard location C:\Program Files\LLVM\bin\clang-cl.exe for the 64-bit version or C:\Program Files (x86)\LLVM\bin\clang-cl.exe for the 32-bit version.

  2. In CLion, go to File | Settings | Build, Execution, Deployment | Toolchains and select the Visual Studio toolchain that you want to configure, or create a new one.

  3. Point the C Compiler and C++ Compiler fields to clang-cl.exe. CLion will suggest the paths detected automatically.

    Clang-cl compiler

Note that currently the -T clangcl options can't be picked up if the bundled CMake is in use along with the Visual Studio toolchain setup (CPP-18848).

MSVC debugger

The MSVC toolchain debugger is implemented on top of LLDB, and it can work with native visualizers from the Visual Studio installation or from your project.

To enable native visualizers support and set the desired diagnostics level, select the Enable NatVis renderers for LLDB checkbox in Settings | Build, Execution, Deployment | Debugger | Data Views | C/C++:

MSVC NatVis

CLion automatically generates one-line summaries for all structures not covered by Natvis and highlights them to increase readability. Also, the built-in formatters provide visualization for wide/Unicode strings (wchar_t, char16_t, char32_t).

If you have custom native visualizers in your project, CLion will use them as well.

MSVC debug with custom NatVis

CLion supports most of the Natvis customization features, such as ArrayItems, IndexListItems, LinkedListItems, TreeItems, Inheritable attribute, Format specifiers, and CustomListItems.

When using the MSVC toolchain debugger, you can enable symbol servers support which will help the debugger resolve library symbols correctly. For more details, refer to Using symbol servers when debugging on Windows.

System toolchain

The System toolchain on Windows allows configuring the build tool, compilers, and debugger without selecting a predefined toolset or environment, similarly to Linux and macOS. Use this toolchain option for embedded development cases like using ARM or for other custom setups.

  1. Go to File | Settings | Build, Execution, Deployment | Toolchains.

  2. Click Add toolchain and select System to add a new System toolchain.

  3. Configure the tools and provide an environment script if required:

    System toolchain configuration example

Initializing the toolchain environment via a script

Instead of setting the environment manually, you can point CLion to an environment file - a script that initializes the environment for your project. This is helpful, for example, when you need to initialize compiler variables, add custom ones, or modify the PATH.

For all toolchains except Docker, environment sourcing only happens once, the first time the toolchain in used in a CMake profile, or upon loading a Makefile.

If you make changes in the script, it will be re-sourced automatically. There is also a feature request for manual script reload.

For the case of the Docker toolchain, sourcing happens each time the toolchain is used.

    1. In the toolchain settings, click Add environment, then click From file:

      Setting a script to initialize the environment
    2. In the Environment file field, specify the path to the script:

      Environment initialization via a script
    3. You will get notifications in case of script loading issues. CLion also checks the script loading time and terminates the execution if it takes too long.

      Environment script loading report

    Clang compiler on Windows

    With CMake 3.15, it has become possible to use the Clang compiler on Windows with the MinGW-w64/MinGW toolchain.

    However, the LLVM Clang for Windows is built using Microsoft Visual Studio, and all the built-in macros and include search paths are set up for use with Visual Studio. So if you take Clang from the LLVM repository, it will not work correctly when configured with the MinGW toolchain. One of the possible workarounds is described below.

    Set up the Clang compiler for MinGW

    1. Install MSYS2.

    2. Download the following packages with the pacman tool (use the pacman -S package_name command):

      • mingw-w64-x86_64-gcc

      • mingw-w64-x86_64-clang

      • mingw-w64-x86_64-lld

      • mingw-w64-x86_64-gdb

      • mingw-w64-x86_64-polly

      • mingw-w64-x86_64-compiler-rt

      This way, you will get the Clang compiler which is built with mingw-w64 and has paths and macros that correspond to this toolchain.

    3. Go to Settings | Build, Execution, Deployment | Toolchains, create a MinGW toolchain, and set up the tools from MSYS.

      After specifying the Toolset, check the automatically detected tools and make sure to switch to Clang in the C Compiler and C++ Compiler fields.

      MinGW MSYS toolchain

    GDB on Windows

    In the case of MinGW, CLion includes the bundled GDB (version 12.1). For Cygwin, you need to install the GDB package in the Cygwin Package Manager, as described in the Cygwin section of this guide.

    You can also switch to a custom GDB binary. In this case, the supported GDB versions are 7.8.x-12.1.

    Note that for GDB 8.0 and later, debugger output is redirected to CLion console by default. To enable opening an external console window for application input/output, go to Help | Find Action or press Control+Shift+A, search for Registry, and set the following key: cidr.debugger.gdb.workaround.windows.forceExternalConsole.

    Last modified: 13 April 2023