其他分享
首页 > 其他分享> > VS Code gdb 调试配置文件

VS Code gdb 调试配置文件

作者:互联网

launch.json

{
    // 使用 IntelliSense 了解相关属性
    // 悬停以查看现有属性的描述
    // 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
    "version": "0.2.0",
    "configurations": [
        {
            // 预启动的任务,表示每次调试或运行之前就会先对源文件进行编译
            // 如果没有该选项,运行该程序前需要对程序进行手工编译
            "preLaunchTask": "test",
            "name": "(gdb) launch",
            "type": "cppdbg",
            "request": "launch",
            // 可执行文件的路径
            "program": "${fileDirname}\\${fileBasenameNoExtension}.exe",
            // 传递给程序的命令参数,如果main()函数需要命令参数,可以在这里添加。
            "args": [],
            // 在输入的地方暂停
            "stopAtEntry": false,
            "cwd": "${fileDirname}",
            "environment": [],
            // 使用外部控制台
            "externalConsole": true,
            "MIMode": "gdb",
            // 调试程序的路径
            "miDebuggerPath": "C:\\MinGW\\bin\\gdb.exe",
            "setupCommands": [
                {
                    "description": "为 gdb 启用整齐打印",
                    "text": "-enable-pretty-printing",
                    "ignoreFailures": true
                },
                {
                    "description": "将反汇编风格设置为 Intel",
                    "text": "-gdb-set disassembly-flavor intel",
                    "ignoreFailures": true
                }
            ]
        }
    ]
}

  

task.json

{
    "tasks": [
        {
            "type": "cppbuild",
            // 编译源文件这个任务的名称
            "label": "test",
            "command": "C:\\MinGW\\bin\\g++.exe",
            "args": [
                "-fdiagnostics-color=always",
                // 给库函数加上调试方面的支持
                "-g",
                // 编译的文件是所在文件夹下的所有.cpp文件
                "${fileDirname}\\${fileBasenameNoExtension}.cpp",
                "-o",
                // 编译生成的可执行文件的名字,并且生成的位置与源文件相同
                "${fileDirname}\\${fileBasenameNoExtension}.exe"
            ],
            "options": {
                "cwd": "${fileDirname}"
            },
            "problemMatcher": [
                "$gcc"
            ],
            "group": {
                "kind": "build",
                "isDefault": true
            },
            "detail": "调试器生成的任务。"
        }
    ],
    "version": "2.0.0"
}

  

 

标签:Code,配置文件,编译,源文件,fileDirname,gdb,exe,true
来源: https://www.cnblogs.com/h-hkai/p/16597214.html