CLion 2023.2 Help

Toolchains

For CMake, Makefile, and compilation database projects in CLion, a toolchain is a set of all the necessary tools required for building and running your application: the CMake executable (CMake projects), the build tool, the C/C++ compilers, the debugger binary, and the working environment.

When you start working with CLion, you already have a default toolchain available. Although you can use it in development, you may also want to adjust the set of tools for the needs of your project (for example, switch to another compiler).

Select the kind of project you are working with to learn more:

CMake projects

CLion uses the configured toolchain to build and run your CMake application. After you set up a toolchain, you can select it in CMake profile settings.

Makefile projects

CLion uses the selected toolchain when loading Makefile projects. The toolchain also provides the debugger for Makefile Application configurations.

After configuring a toolchain, you will be able to select it in Settings | Build, Execution, Deployment | Makefile.

See Makefiles: Adjust project settings.

Compilation database projects

CLion uses the selected toolchain for resolving the compilation database project files.

After configuring a toolchain, you will be able to select it in Settings | Build, Execution, Deployment | Compilation Database. Note that Remote toolchains are not supported for compilation database projects.

See Compilation database: Check the toolchain.

Custom build targets and applications

The selected toolchain provides the environment and the debugger for custom run/debug configurations. See Creating a custom build target.

Create a toolchain

  1. Go to Settings | Build, Execution, Deployment | Toolchains and click App general add to add a new toolchain.

    Watch this video for an overview of Windows toolchain options:

    Select one of the pre-defined toolchain setups (MinGW, Cygwin, Visual Studio, or WSL), Remote Host, Docker) or configure a custom toolchain (System):

    Windows toolchain options

    On Linux or macOS, choose the type of your toolchain: System for local projects, Remote Host or Docker for remote development.

    macOS toolchains
  2. To initialize the toolchain environment via a script, click Add environment and specify the path to the file. See below for more information.

  3. If required, switch from the bundled CMake to a custom CMake installation of your choice.

  4. By default, CLion will use bundled Ninja as the Build Tool. You can specify another build tool of your choice, for example, make.

  5. CLion will attempt to detect the C/C++ compilers.

    If you prefer to use custom compilers instead of the detected ones, provide the paths in C Compiler and C++ Compiler. See Switching compilers.

  6. Select the Debugger.

    On macOS, you can switch between the bundled LLDB (version 15.0.5) and custom GDB.

    On Windows, the options include the bundled GDB (version 13.1), custom GDB, and LLDB (version 9.0.0) for MSVC.

    Note that custom LLDB is not currently supported.

  7. CLion verifies your choices and notifies you if any of the tools or packages are missing.

  8. When the configuration is completed, click OK to save it.

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
    Last modified: 06 September 2023