gpt4 book ai didi

visual-studio - 无法开始调试 : The value of miDebuggerPath is invalid

转载 作者:行者123 更新时间:2023-12-04 11:10:15 28 4
gpt4 key购买 nike

我最近开始研究 vscode。我想调试我的 C 代码。但是当我启动调试器时出现错误:无法开始调试。 miDebuggerPath 的值无效。

我在 wsl 上安装了我的 gdb。它的路径是/usr/bin/gdb。我已将相同的路径复制到 miDebuggerPath 中的 launch.json。

这是我的 launch.json :

{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [


{
"name": "(gdb) Launch",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/bin/main",
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceFolder}",
"environment": [],
"externalConsole": true,
"MIMode": "gdb",
"miDebuggerPath": "/usr/bin/gdb",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
]
}
]

}

它不应该抛出错误,我应该能够启动我的调试器。

最佳答案

所以这在 WSL-Ubuntu 上发生在我身上。在我的情况下,由于未满足的依赖关系,gdb 被破坏了。花了一段时间来修复,但是一旦我在 WSL-Ubuntu 中正确地重新安装了 gdb,我终于让它工作了。

安装 gdb 可以在 shell 上完成

sudo apt-get install gdb

可能有多种原因导致它最终损坏,但是一旦修复了 gdb,vscode-debugging 应该会运行。至少,您不会看到该错误弹出。

关于visual-studio - 无法开始调试 : The value of miDebuggerPath is invalid,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56344186/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com