我想在VSC中调试我的测试代码,但当尝试时,我得到了这个错误消息:Error message in VSC when launching the gdb JSON configuration。代码编译没有问题,我可以在VSC内外的终端中运行它。
task.json文件:
{
"tasks": [
{
"type": "cppbuild",
"label": "C/C++: gcc.exe build active file",
"command": "C:\\MinGW\\bin\\gcc.exe",
"args": [
"-fdiagnostics-color=always",
"-g",
"${file}",
"-o",
"${fileDirname}\\${fileBasenameNoExtension}.exe"
],
"options": {
"cwd": "${fileDirname}"
},
"problemMatcher": [
"$gcc"
],
"group": {
"kind": "build",
"isDefault": true
},
"detail": "Task generated by Debugger."
}
],
"version": "2.0.0"
}
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": "${fileDirname}\\${fileBasenameNoExtension}.exe",
"args": [],
"stopAtEntry": false,
"cwd": "${fileDirname}",
"environment": [],
"externalConsole": false,
"MIMode": "gdb",
"miDebuggerPath": "C:\\MinGW\\bin\\gdb.exe",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
]
}
]
}
我彻底检查了我的目录和task.json和launch.json文件。我找不到任何错误。我尝试的下一件事是在桌面上运行文件夹,它工作了,但不是在我的主目录。
1条答案
按热度按时间8fsztsew1#
我也有同样的问题。或多或少是这样的:
错误:无法启动调试。命令“-exec-run”的意外GDB输出。创建进程/usr/bin/时出错(错误2)。
要修复,请尝试使用较低版本的
gcc
/g++
(v9
左右),特别是较低版本的gdb
(v10
,安装的实验版本是问题,更改为9.3
和OK)。