使用Windows 10和MINGW编译器在VS Code上使用gdb调试器调试时出错
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用Windows 10和MINGW编译器在VS Code上使用gdb调试器调试时出错相关的知识,希望对你有一定的参考价值。
我正在遵循https://code.visualstudio.com/docs/cpp/config-mingw上的文档以在VS代码上设置我的C ++开发环境。
我成功创建了构建任务并运行了构建任务,但是当我尝试设置调试器(GDB调试器)时,在终端上得到了以下输出。
C:UsersAyonc++helloworld> cmd /C "c:UsersAyon.vscodeextensionsms-vscode.cpptools-0.28.1debugAdaptersinWindowsDebugLauncher.exe --stdin=Microsoft-MIEngine-In-shlwrnf5.x12 --stdout=Microsoft-MIEngine-Out-vg12hskh.c52 --stderr=Microsoft-MIEngine-Error-nrcvh0zz.0u0 --pid=Microsoft-MIEngine-Pid-m1nmxyvs.qk2 --dbgExe=C:MinGWingdb.exe --interpreter=mi "
'cmd' is not recognized as an internal or external command,
operable program or batch file.
我对输出中的“ cmd /”如何产生感到好奇。请帮助我解决此错误。
提前感谢。
供参考,这是我的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": "g++.exe - Build and debug active file",
"type": "cppdbg",
"request": "launch",
"program": "${fileDirname}\${fileBasenameNoExtension}.exe",
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceFolder}",
"environment": [],
"externalConsole": false,
"MIMode": "gdb",
"miDebuggerPath": "C:\MinGW\bin\gdb.exe",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
],
"preLaunchTask": "g++.exe build active file"
}
]
}
答案
您是否将mingw64 / bin添加到系统路径?方法如下:
Control panel -> Edit path -> Environment variables -> Path -> New
您也可以在vscode官方网站。
以上是关于使用Windows 10和MINGW编译器在VS Code上使用gdb调试器调试时出错的主要内容,如果未能解决你的问题,请参考以下文章
Windows下的Mingw + clang vs Boost:不同类型的错误
C++:如何在 Windows 10 上使用编译器 MinGW 9.2.0 安装 OpenCV