这是我的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": "gcc.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:\Program Files (x86)\CodeBlocks\MinGW\bin\gdb32.exe",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
],
"preLaunchTask": "C/C++: gcc.exe build active file"
}
]
}
这里早些时候是GDB.exe,但它说找不到,甚至我也找不到。。所以我放了gdb32.exe,因为我能找到它,但它仍然没有调试任何东西
我现在受够了这个问题。。。
代码块显示请指定可执行路径,找不到
请帮忙,谢谢
代码::块可以在没有MinGW的情况下安装,这是可以的,因为MinGW-w64维护得更好。但是MinGW-w64需要单独安装。
您可以从以下位置下载独立的MinGW-w64https://winlibs.com/该网站还解释了如何将此编译器和调试器添加到设置中。