文章目录
- VScode设置pretty-printer无效
- 问题
- 解决
- 尝试
- 正式解决
- 参考
VScode设置pretty-printer无效
问题
win10系统下,VScode中即使在launch.json中进行了如下设置,还是无效
{
"description": "为 gdb 启用整齐打印",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
解决
尝试
开始我意识到是gdb的问题,我以为是gdb相关组件没安装完善,于是用下面指令打开Mingw Installation Manager,安装gdb其他相关。
mingw-get
然而安装完,问题也没有解决。
正式解决
直到我看到了一个项目下的issue,Please do not use bundled GDB under windows!
可能是因为Mingw的捆绑gdb是有问题的。
所以我在MinGW-w64 - for 32 and 64 bit Windows Files下载了x86_64-win32-sjlj
替换了原来的Mingw(就是将环境变量都改为新的这个,原来的删不删都无所谓)
然后问题解决
参考
https://shaogui.life/2021/03/10/windows%E4%B8%8A%E5%AE%89%E8%A3%85minGW/
https://github.com/elmot/clion-embedded-arm/issues/86