VSCode远程调试Go程序方法(Attach)

Posted MrBlue

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了VSCode远程调试Go程序方法(Attach)相关的知识,希望对你有一定的参考价值。

  1. set launch.json
        {
            "name": "Attach",
            "type": "go",
            "request": "launch",
            "mode": "remote",
            "remotePath": "${workspaceRoot}",
            "port": 2345,
            "host": "127.0.0.1",
            "program": "${workspaceRoot}",
            "env": {},
            "args": [],
            "showLog": true
        }
  1. go build && run
  2. get pid && dlv attach pid --headless --listen=:2345 --log
  3. in VSCode, Click begin debug button

以上是关于VSCode远程调试Go程序方法(Attach)的主要内容,如果未能解决你的问题,请参考以下文章

xLua 调试

SLua 调试

vscode Unable to attach to CoreCLR. Access is denied

在 vscode 中 debugger 调试

vscode 调试显示数组完整个数

vscode Nodejs 调试 相关总结