Files
eepp/bin/assets/plugins/debugger.json
Martín Lucas Golini 443aead0df More WIP.
2025-01-02 01:08:02 -03:00

48 lines
1.2 KiB
JSON

{
"dap": [
{
"name": "gdb",
"url": "https://www.gnu.org/software/gdb",
"run": {
"command": "gdb --interpreter=dap"
},
"languages": [ "cpp", "c", "d", "go", "objectivec", "fortran", "pascal", "rust" ],
"configurations": [
{
"name": "launch binary",
"command": "launch",
"arguments": {
"program": "${file}",
"args": "${args}",
"cwd": "${cwd}",
"env": "${env}",
"stopOnEntry": "${stopOnEntry}",
"stopAtBeginningOfMainSubprogram": false
}
}
]
},
{
"name": "lldb-dab",
"url": "https://github.com/llvm/llvm-project/blob/main/lldb/tools/lldb-dap/README.md",
"run": {
"command": "lldb-dap"
},
"languages": [ "cpp", "c", "odin", "rust", "zig" ],
"configurations": [
{
"name": "launch binary",
"command": "launch",
"arguments": {
"program": "${file}",
"args": "${args}",
"cwd": "${cwd}",
"env": "${env}",
"stopOnEntry": "${stopOnEntry}"
}
}
]
}
]
}