提问人:Ali 提问时间:11/15/2023 最后编辑:rioV8Ali 更新时间:11/15/2023 访问量:47
无法在 Visual Studio Code 中调试我的 C++ 项目 [已关闭]
can't debug my c++ project in visual studio code [closed]
问:
我已经通过 msys2 安装了所有必要的软件包,但我仍然无法调试我的程序。这是错误:
lunch: program'd:\FolderName\folderName\stillFolderName\ ... \build\Dbug\outDebug\ ' does not exist.
我不知道该怎么办。当我单击打开一个页面时,我不知道该如何处理它。
这是文件:launch.json
launch.json
{
"version": "0.2.0",
"configurations": [
{
"name": "C/C++ Runner: Debug Session",
"type": "cppdbg",
"request": "launch",
"args": [],
"stopAtEntry": false,
"externalConsole": true,
"cwd": "d:/Ali007/Programming/Collage/C C++/Test",
"program": "d:/Ali007/Programming/Collage/C C++/Test/build/Debug/outDebug",
"MIMode": "gdb",
"miDebuggerPath": "gdb",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
]
}
]
}
我已经检查了我通过CMD安装的软件包,并且所有东西都签出。
我需要对此做些什么吗?
有人告诉我,我应该放某个地方,但我不知道在哪里。launch.json
-g
launch.json
答: 暂无答案
评论
午餐
说真的,你确定这不仅仅是一个错别字吗?