刚刚开始使用vscode不知道如何调试,点击了右上侧按钮后出现了以下情况:
1条回答 默认 最新
- 浪客 2022-09-05 07:57关注
点那个打开launch.json后,写入下面launch.json内容,在.vscode文件夹新建一个task.json文件,复制下面内容。 task.json { // See https://go.microsoft.com/fwlink/?LinkId=733558 // for the documentation about the tasks.json format "version": "2.0.0", "tasks": [ { "label": "g++debug", "type": "shell", "command": "gcc.exe", "args": [ "${file}", "-g", "-o", "${fileDirname}/${fileBasenameNoExtension}.exe" ] } ] } launch.json { // 使用 IntelliSense 了解相关属性。 // 悬停以查看现有属性的描述。 // 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387 "version": "0.2.0", "configurations": [ { "name": "G++ Debug", "type": "cppdbg", "preLaunchTask": "g++debug", "request": "launch", "program": "${fileDirname}/${fileBasenameNoExtension}.exe", "args": [], "stopAtEntry": false, "cwd": "${fileDirname}", "environment": [], "externalConsole": true, "MIMode": "gdb", "miDebuggerPath": "gdb.exe", "setupCommands": [ { "description": "为 gdb 启用整齐打印", "text": "-enable-pretty-printing", "ignoreFailures": true } ] } ] }
解决 1无用