CMake Error: configure_file Problem Configuring File - with CLion

CMake Error: configure_file Problem Configuring File - with CLion

我正在尝试使用 WSL 在 Windows 上设置我的 CLion,遵循官方教程:https://www.jetbrains.com/help/clion/how-to-use-wsl-development-environment-in-clion.html

在设置工具链时,现在在编辑器中,在识别 C 编译器和功能、C++ 编译器和功能后,我遇到了同样的错误。导致错误的行始终相同:

configure_file(
  ${CMAKE_ROOT}/Modules/CMakeCXXCompiler.cmake.in
  ${CMAKE_PLATFORM_INFO_DIR}/CMakeCXXCompiler.cmake
  @ONLY
)

我正在为 Linux 2 使用 Windows 子系统 Ubuntu 20.04,GCC 和 G++ 版本 9.3.0。

请帮我诊断问题。

我遇到了同样的问题。

我在这里找到了解决方案:https://intellij-support.jetbrains.com/hc/en-us/community/posts/360003413779-Troubles-with-WSL-toolchain-Test-CMake-run-finished-with-errors-

总而言之,您应该创建一个 wsl 配置文件 /etc/wsl.conf 并添加以下行:

[automount]
options = "metadata"
enabled = true

在此之后你应该重新启动你的 wsl(在 powershell 中)。

wsl.exe -l     // gets a list of your linux distributions
wsl.exe -t *name-of-your-distribution*