CLion 2024.1 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 Native 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 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 17.0.6) and custom GDB.

    On Windows, the options include the bundled GDB (version 14.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 shell 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.

The following environment files are supported:

  • Windows MinGW and MSVC toolchains — bat files.

  • Windows Cygwin, Local Linux/macOS, WSL, Docker, and Remote toolchains — shell files.

Most frameworks include environment scripts, which you can use right away. See the example of ESP-IDF on macOS. You can also create your own script, for example, when you need to source several environment files: see the example of ESP-IDF on Windows.

  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

Set the fallback shell

  • To source the environment file on Linux (local or remote), WSL, and Docker, CLion invokes source or . in default login shell as set in the $SHELL variable.

    If $SHELL is empty, CLion uses the shell specified in the Fallback shell for sourcing the environment field of the Advanced settings.

Last modified: 16 April 2024