Clion 无法识别工具集 mingw64
Here is my configuration for Clion
Here is what is in the C:\msys64 directory
Here is what is included in the C:\msys64\mingw64 directory
All these packages are installed by MSYS
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据 JetBrains YouTrack 上的问题 CPP-28457,似乎 MinGW 的更新标头破坏了 CLion 检测 MSYS2 的 MinGW 的能力。
回复提供临时的通过创建软链接来修复。
您可以尝试根据说明使用提升的 PowerShell 建立符号链接,例如 使用 PowerShell 创建符号链接:
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:
<MSYS2_INSTALL_DIR>/mingw64/x86_64-w64-mingw32
New-Item -ItemType SymbolicLink -Path ./include -Target ../include