CLion and CMake Toolchain Files

已完成

A common use case is to create a CMake toolchain file for each target system (various architectures, for examples) your application software runs on. For example, you may need to build your application for an x86_64, armv5, and armv7 targets. Thus, you'd have a CMake toolchain file to cover each.

CLion has configuration options for toolchains, but it appears completely independent - there does not appear to be a way to have it use existing CMake toolchain files. Having it use existing CMake toolchain files is attractive as both the IDE and a build server, for example, could utilize the same configuration when cross-compiling.

Is there a way to make CLion utilize existing CMake toolchain files instead of having to create duplicate "Toolchains" in the "Build, Execution, Deployment"->"Toolchains" menu?

5

Not sure if this is what you are looking for but this is what I'm doing.  I didn't have an existing CMake tool chain file as my existing project was Makefile based.  So I created a new toolchain file.  Then in Build, Execution, Deployment/CMake I created a new profile in this case ARM-imx6  and then in CMake options:

-DCMAKE_TOOLCHAIN_FILES=/pathto/toolchain-arm.cmake -DDOARM=1   The DOARM=1 is so the source code can conditionally build for either ARM or x86 architectures.

It took me some time to workout the interactions of the various profiles, and build configurations but once that was resolved this is working fine for me and I've used it for an RPi build profile as well as for some custom hardware with a different ARM processor and tool chain. 

I also set up a GDB Remote Debug Run/Debug configuration and that works great for remote debugging using CLion.

Without seeing what might be different in your existing CMake tool chain file I don't know if there's anything that might prevent your existing file from being plug and play.

So in my current project I have the following profiles:

Debug

Release

ARM-imx6-debug

and 

ARM-imx6

The first two are for x86 builds on the host desktop.

The last two are for building for the ARM target.

Hopefully this helps.

 

0

Yes, it's possible to pass your toolchain file via -DCMAKE_TOOLCHAIN_FILE=... in File | Settings | Build, Execution, Deployment | CMake > CMake options

1

For anyone else that stumbles across this... if you want to use a toolchain file like Anna suggests, then you most likely need to ensure that the "Default" toolchain in ( File | Settings | Build, Execution, Deployment | Toolchains ) is being used. If not, then Clion tries to do too much and can override things in your toolchain file that you specify in ( File | Settings | Build, Execution, Deployment | CMake > CMake options ).

1

Being completely new to CLion, I’m trying to understand how to make it fit my way of working. I’m using the Hunter packet manager to fetch and build dependencies. When building dependencies, I should specify a CMake toolchain file via -DCMAKE_TOOLCHAIN_FILE, so that Hunter can build with the same tool chain that is being used by CLion. It would be really nice if CLion could either export a CMake toolchain file based on its configuration or, if CLion could honour an existing tool chain file and set configuration based on that file. 

1

@Ove Svensson, toolchains for CMake projects in CLion can be specified either in Settings / Preferences | Build, Execution, Deployment | Toolchains, or using -DCMAKE_TOOLCHAIN_FILE (which can be specified in the CMake options field of CMake profile). There is no possibility to export a toolchain specified in Settings / Preferences | Build, Execution, Deployment | Toolchains to a CMake toolchain file.

0

Was about to give up but Matt's solution worked for me after hours of frustration. Anna Falevskaya +1 for better cross-compilation toolchain support

0

We should use `CMAKE_TOOLCHAIN_FILE` instead of `CMAKE_TOOLCHAIN_FILES`.

 

For example, for android ndk arm64-v8a platform, we need these:

 

-DCMAKE_TOOLCHAIN_FILE=/home/zz/soft/android-ndk-r21b/build/cmake/android.toolchain.cmake -DANDROID_LD=lld -DANDROID_ABI="arm64-v8a" -DANDROID_PLATFORM=android-24

1

The problem is that shared config of CLion's Toolchain is not accepting cmake parameters and we have to set `-DCMAKE_TOOLCHAIN_FILE=...` per each target in each project.
If CLion's Toolchain window could accept cmake -D options, then we would set it once in Toolchain window and forget about per-target configurations. I think that this window should also accept environment variables as key-value pairs in addition to env file. 

3

This option is not only shared across other project but also you cannot use environment variables (for say vcpkg). Tried:
`-DCMAKE_TOOLCHAIN_FILE="$VCPKG_ROOT/scripts/buildsystems/vcpkg.cmake"`

`-DCMAKE_TOOLCHAIN_FILE="$ENV{VCPKG_ROOT}/scripts/buildsystems/vcpkg.cmake"`

`-DCMAKE_TOOLCHAIN_FILE="%VCPKG_ROOT%/scripts/buildsystems/vcpkg.cmake"`

On Windows machine
Why does it need to be so complex? Any updates on this functionality so far?

UPD: well, the previous comment happened to be mine and already mentioned inability to use environments. Faced the same issue again

0

请先登录再写评论。