I tried to setup VS Code for C++ programming. The programs gets compiled fine. But whenever I try to debug a program it gives some error for which I am unable to figure out the reason
This is the error:
--stdin=Microsoft-MIEngine-In-ndqplc5z.j5g --stdout=Microsoft-MIEngine-Out-dchv4b2x.rnb --stderr=Microsoft-MIEngine-Error-wmxy2nel.ldw --pid=Microsoft-MIEngine-Pid-bubfuue2.hj0 --dbgExe=C:\Mingw\bin\gdb.exe --interpreter=mi
My launch.json file:
{
"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": "C:\MinGW\bin",
"environment": [],
"MIMode": "gdb",
"miDebuggerPath": "C:\MinGW\bin\gdb.exe",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
],
"preLaunchTask": "C/C++: g++.exe build active file"
}
]
}
and task.json
{
"version": "2.0.0",
"tasks": [
{
"type": "cppbuild",
"label": "C/C++: g++.exe build active file",
"command": "C:\MinGW\bin\g++.exe",
"args": [
"-g",
"${file}",
"-o",
"${fileDirname}\${fileBasenameNoExtension}.exe"
],
"options": {
"cwd": "C:\MinGW\bin"
},
"problemMatcher": [
"$gcc"
],
"group": {
"kind": "build",
"isDefault": true
},
"detail": "compiler: C:\MinGW\bin\g++.exe"
}
]
}
question from:
https://stackoverflow.com/questions/66049889/how-do-i-solve-this-debug-error-in-vs-code 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…