summaryrefslogtreecommitdiff
path: root/.vscode/launch.json
blob: 84c2b3d72242e88c7bd152fe5843581d45caec78 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
    "version": "0.2.0",
    "configurations": [
        {
            "name": "Launch",
            "type": "gdb",
            "request": "launch",
            "target": "${command:cmake.launchTargetPath}",
            "cwd": "${workspaceFolder}",
            "debugger_args": ["-nx"],
            "preLaunchTask": "CMake: build",
            "valuesFormatting": "prettyPrinters",
            "autorun": [
                "-enable-pretty-printing",
                "-gdb-set disassembly-flavor intel",
                "-gdb-set debuginfod enabled on",
            ]
        }
    ]
}