解决VS code c++ launch:program does not exist问题!!!
Xsenk 2024-06-29 12:05:01 阅读 74
网上看了很多资料,全都是一堆没有用的。都说是是launch的问题,但是按照网上的改都不对。报错如下:
网上的建议是修改launch的"program"、"miDebuggerPath";tasks的"command"、"args"的-o文件。这两个肯定是要改的,但是改了还是没有用!!!
偶然间发现终端输出了一行信息:
大概意思就是说我们没有定义引用cout,但是这个不可能呀!然后发现是gcc有问题!我们把tasks.json文件中的gcc全部选中,替换成g++,报错解决l!!!!找了一天的毛病!!!!
下面是我的tasks.json和launch.json文件:
{
"tasks": [
{
"type": "cppbuild",
"label": "C/C++: g++.exe 生成活动文件",
"command": "D:\\Program Files\\MinGW_64\\mingw64\\bin\\g++.exe",
"args": [
"-fdiagnostics-color=always",
"-g",
"${file}",
"-o",
"${fileDirname}\\main.exe"
],
"options": {
"cwd": "${fileDirname}"
},
"problemMatcher": [
"$g++"
],
"group": {
"kind": "build",
"isDefault": true
},
"detail": "调试器生成的任务。"
}
],
"version": "2.0.0"
}
{
// 使用 IntelliSense 了解相关属性。
// 悬停以查看现有属性的描述。
// 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "(gdb) 启动",
"type": "cppdbg",
"request": "launch",
"program": "${fileDirname}\\main.exe",
"args": [],
"stopAtEntry": false,
"cwd": "${fileDirname}",
"environment": [],
"externalConsole": false,
"MIMode": "gdb",
"miDebuggerPath": "D:\\Program Files\\MinGW_64\\mingw64\\bin\\gdb",
"setupCommands": [
{
"description": "为 gdb 启用整齐打印",
"text": "-enable-pretty-printing",
"ignoreFailures": true
},
{
"description": "将反汇编风格设置为 Intel",
"text": "-gdb-set disassembly-flavor intel",
"ignoreFailures": true
}
]
}
]
}
调试结果:
问题解决!喜欢的点个赞吧!!
声明
本文内容仅代表作者观点,或转载于其他网站,本站不以此文作为商业用途
如有涉及侵权,请联系本站进行删除
转载本站原创文章,请注明来源及作者。