vscode调试c++配置

来源:互联网 发布:mac文件管理在哪里 编辑:程序博客网 时间:2024/06/06 22:08
{    "version": "0.1.0",    "command": "g++",    "args": ["-g","${file}","-o","${file}.exe"],    // 编译命令参数    "problemMatcher": {        "owner": "cpp",        "fileLocation": ["relative", "${workspaceRoot}"],        "pattern": {            "regexp": "^(.*):(\\d+):(\\d+):\\s+(warning|error):\\s+(.*)$",            "file": 1,            "line": 2,            "column": 3,            "severity": 4,            "message": 5        }    }}

launch.json

{    // 使用 IntelliSense 了解相关属性。     // 悬停以查看现有属性的描述。    // 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387    "version": "0.2.0",    "configurations": [                {            "name": "(gdb) Launch",            "type": "cppdbg",            "request": "launch",            "targetArchitecture": "x86",            "program": "${file}.exe",            "args": [],            "stopAtEntry": false,            "cwd": "${workspaceFolder}",            "environment": [],            "externalConsole": true,            "preLaunchTask": "g++" ,            "MIMode": "gdb",            "miDebuggerPath": "D:\\mingw64\\mingw64\\bin\\gdb.exe",            "setupCommands": [                {                    "description": "Enable pretty-printing for gdb",                    "text": "-enable-pretty-printing",                    "ignoreFailures": true                }            ]        }    ]}


原创粉丝点击