我正在使用VS Code通过Linux的Windows子系统调试“ C”代码。 我基本上想在操作系统课程中使用基于Linux的编译器来编译“ C”代码。 我在Visual Studio Code上将默认终端设置为“ WSL”。 单击调试按钮时,出现以下错误 '无法开始调试。 miDebuggerPath的值无效' 我验证了“ gdb”已安装在Linux的Windows子系统中,并且其可执行文件(ELF文件)位于“ / usr / bin / gdb”位置
这是m 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}/temp",
"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
}
],
//"preLaunchTask": "Compile C Ubuntu"
}
]
}
任何方向都会有所帮助:)
答案 0 :(得分:1)
您遇到的问题是缺少用于调用WSL站点上的调试器的bash.exe
远程处理调用。您将需要添加一个名为"pipeTransport":
的部分并进行配置。有关更多信息,请参见here。
您可以在我们的扩展程序的GitHub网站上找到其他信息,网址为https://github.com/microsoft/vscode-cpptools。