mirror of
https://github.com/SpartanJ/eepp.git
synced 2026-08-18 06:55:48 +03:00
DAP WIP.
This commit is contained in:
44
bin/assets/plugins/debugger.json
Normal file
44
bin/assets/plugins/debugger.json
Normal file
@@ -0,0 +1,44 @@
|
||||
{
|
||||
"dap": [
|
||||
{
|
||||
"name": "gdb",
|
||||
"url": "https://www.gnu.org/software/gdb",
|
||||
"run": {
|
||||
"command": "gdb --interpreter=dap"
|
||||
},
|
||||
"configurations": [
|
||||
{
|
||||
"name": "launch binary",
|
||||
"command": "launch",
|
||||
"arguments": {
|
||||
"program": "${file}",
|
||||
"args": "${args}",
|
||||
"cwd": "${cwd}",
|
||||
"env": "${env}",
|
||||
"stopOnEntry": "${stopOnEntry}"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "lldb-dab",
|
||||
"url": "https://github.com/llvm/llvm-project/blob/main/lldb/tools/lldb-dap/README.md",
|
||||
"run": {
|
||||
"command": "lldb-dap"
|
||||
},
|
||||
"configurations": [
|
||||
{
|
||||
"name": "launch binary",
|
||||
"command": "launch",
|
||||
"arguments": {
|
||||
"program": "${file}",
|
||||
"args": "${args}",
|
||||
"cwd": "${cwd}",
|
||||
"env": "${env}",
|
||||
"stopOnEntry": "${stopOnEntry}"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user