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