Clion 无法识别工具集 mingw64

发布于 2025-01-12 02:06:23 字数 520 浏览 3 评论 0原文

这是我的 Clion 配置

在此处输入图像描述

这是 C:\msys64 目录中的内容

在此处输入图像描述

以下是 C:\msys64\mingw64 目录中包含的内容 输入图片此处描述

所有这些软件包均由 MSYS 安装

Here is my configuration for Clion

enter image description here

Here is what is in the C:\msys64 directory

enter image description here

Here is what is included in the C:\msys64\mingw64 directory
enter image description here

All these packages are installed by MSYS

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

命比纸薄 2025-01-19 02:06:23

根据 JetBrains YouTrack 上的问题 CPP-28457,似乎 MinGW 的更新标头破坏了 CLion 检测 MSYS2 的 MinGW 的能力。

回复提供临时的通过创建软链接来修复

您可以尝试根据说明使用提升的 PowerShell 建立符号链接,例如 使用 PowerShell 创建符号链接

  • 打开提升的 PowerShell
  • 将目录更改为/mingw64/x86_64-w64-mingw32
  • 通过键入以下内容创建链接:New-Item -ItemType SymbolicLink -Path ./include -Target ../include

According to the issue CPP-28457 on JetBrains YouTrack, it seems that an update of MinGW headers broke CLion's ability to detect MSYS2's MinGW.

An reply provides a temporary fix by making an soft link.

You can try making a symbol link with an elevated PowerShell under the instructions by, for example, Create Symbolic Link with PowerShell:

  • Open an elevated PowerShell
  • Change directory to <MSYS2_INSTALL_DIR>/mingw64/x86_64-w64-mingw32
  • Making a link by typing: New-Item -ItemType SymbolicLink -Path ./include -Target ../include
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文