码迷,mamicode.com
首页 > 其他好文 > 详细

Kali中使用vscode调试bitcoin

时间:2021-01-27 14:04:54      阅读:0      评论:0      收藏:0      [点我收藏+]

标签: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

Kali中使用vscode调试bitcoin

标签:use   console   setup   bitcoin   orm   visit   tty   blob   work   

原文地址:https://www.cnblogs.com/weikunpeng/p/14325806.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!