Skip to content

Instantly share code, notes, and snippets.

@adam2k
Last active August 8, 2022 19:10
Show Gist options
  • Save adam2k/014c1c3963ba661649ed67701ed5e29f to your computer and use it in GitHub Desktop.
Save adam2k/014c1c3963ba661649ed67701ed5e29f to your computer and use it in GitHub Desktop.
Bitcoin .vscode/launch.json
{
"version": "0.2.0",
"configurations": [
{
"name": "(lldb) Debug bitcoind",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/src/bitcoind",
"args": ["-debug"],
"stopAtEntry": false,
"cwd": "${workspaceFolder}",
"sourceFileMap": {
"src": "${workspaceFolder}/src/"
},
"logging": {
"moduleLoad": true,
"trace": true
},
"environment": [],
"externalConsole": false,
"MIMode": "lldb"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment