Skip to content

Instantly share code, notes, and snippets.

@zhuangh
Created May 4, 2024 23:58
Show Gist options
  • Save zhuangh/870886ce9d773d9c53440d42f7dd7fd7 to your computer and use it in GitHub Desktop.
Save zhuangh/870886ce9d773d9c53440d42f7dd7fd7 to your computer and use it in GitHub Desktop.
vscode-bebyond gdb - gdb server
// https://marketplace.visualstudio.com/items?itemName=coolchyni.beyond-debug
{
"inputs": [
{
"id": "hostname",
"description": "xxx",
"default": "localhost",
"type": "promptString"
},
{
"id": "port",
"description": "xxx",
"default": "1234",
"type": "promptString"
}
],
"configurations":[
{
"type": "by-gdb",
"request": "launch",
"name": "Launch(gdb)",
"debbugerPath": "path/gdb"
"program": "${fileBasenameNoExtension}",
"cwd": "${workspaceRoot}",
"remote": {
"enabled": true,
"address": "${input:hostname}:${input:port}",
"mode": "remote",
//"execfile": "${fileBasenameNoExtension}"
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment