我编译了最新版本的 GCC。如何将 CLion 指向它的位置?

I compiled the latest version of GCC. How to point CLion to its location?

我已经在目录中构建了最新版本的 GCC。我如何指向 CLion 来使用它?

经过进一步研究,我意识到我需要配置的是CMake。由于 CLion 有一个捆绑的 CMake,您可以在 CLion 中配置它。

转到设置 -> 构建、执行、部署 -> CMake。在 CMake 选项下,添加

-D CMAKE_CXX_COMPILER=...

并将...替换为g++的路径。

还有其他方法可以做到这一点,这些方法可能更好。我只是这样做了,它起作用了,但如果你想深入了解更多,请看这里:

https://cmake.org/Wiki/CMake_FAQ#How_do_I_use_a_different_compiler.3F