VSCode远程调试Go程序方法(Attach)
Posted MrBlue
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了VSCode远程调试Go程序方法(Attach)相关的知识,希望对你有一定的参考价值。
- 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
}
- go build && run
- get pid && dlv attach pid --headless --listen=:2345 --log
- in VSCode, Click begin debug button
以上是关于VSCode远程调试Go程序方法(Attach)的主要内容,如果未能解决你的问题,请参考以下文章