Last active
August 8, 2022 19:10
-
-
Save adam2k/014c1c3963ba661649ed67701ed5e29f to your computer and use it in GitHub Desktop.
Bitcoin .vscode/launch.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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