标签:use console setup bitcoin orm visit tty blob work
.vscode/launch.json设置
关键在于
"program": "${workspaceFolder}/src/qt/bitcoin-qt",
全部内容:
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "(gdb) Launch",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/src/qt/bitcoin-qt",
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceFolder}",
"environment": [],
"externalConsole": false,
"MIMode": "gdb",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
]
}
]
}
参考资料
https://github.com/bitcoin/bitcoin/blob/master/doc/build-unix.md
https://www.jianshu.com/p/4e5ea98c6e33
https://blog.csdn.net/l1028386804/article/details/83120113
https://github.com/bitcoin/bitcoin/issues/2998
https://blog.csdn.net/xocoder/article/details/78914576
https://www.cnblogs.com/jimaojin/p/13211359.html
标签:use console setup bitcoin orm visit tty blob work
原文地址:https://www.cnblogs.com/weikunpeng/p/14325806.html