我是靠谱客的博主 迷路小霸王,最近开发中收集的这篇文章主要介绍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=true --api-version=2--listen=:2345 --log
  3. in VSCode, Click begin debug button

* 注意go build要带上这个标记 -gcflags='-N -l',目的是关闭Go内部做的一些优化,聚合变量和函数内联等优化。

* 或者直接这样运行dlv --listen=:2345 --headless=true --api-version=2 exec ./demo

转载于:https://www.cnblogs.com/mrblue/p/9069084.html

最后

以上就是迷路小霸王为你收集整理的VSCode远程调试Go程序方法(Attach)的全部内容,希望文章能够帮你解决VSCode远程调试Go程序方法(Attach)所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(70)

评论列表共有 0 条评论

立即
投稿
返回
顶部