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

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

时间:2018-05-21 21:15:44      阅读:2556      评论:0      收藏:0      [点我收藏+]

标签:lis   roo   .json   ESS   remote   listen   path   debug   pre   

  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)

标签:lis   roo   .json   ESS   remote   listen   path   debug   pre   

原文地址:https://www.cnblogs.com/mrblue/p/9069084.html

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