登录
首页 >  Golang >  Go问答

如何在 Visual Studio Code 中使用 Delve 调试器

来源:Golang技术栈

时间:2023-03-25 14:39:39 278浏览 收藏

一分耕耘,一分收获!既然打开了这篇文章《如何在 Visual Studio Code 中使用 Delve 调试器》,就坚持看下去吧!文中内容包含golang等等知识点...希望你能在阅读本文后,能真真实实学到知识或者帮你解决心中的疑惑,也欢迎大佬或者新人朋友们多留言评论,多给建议!谢谢!

问题内容

我已经为 VS Code 安装了 Go 扩展,但无法使其工作。

“dlv debug”在终端上可以正常工作。

dlv debug src/github.com/user/hello

launch.json: _

{
    "version": "0.2.0",
    "configurations": [
        {
            "name": "Launch",
            "type": "go",
            "request": "launch",
            "mode": "debug",
            "program": "${workspaceRoot}",
            "env": {},
            "args": []
        }
    ]
}

你知道如何设置吗?

正确答案

要在带有 Golang 的 Visual Studio Code 中使用 Delve 调试器,请执行以下步骤:

( Note: for Windows OS replace all $GOPATH with %GOPATH% )
  • 安装最新的 GolangGOROOT并设置GOPATH

  • 添加$GOPATH/bin到您的操作系统PATH环境变量。

  • 设置环境变量:GO15VENDOREXPERIMENT = 1

  • 运行:go get github.com/derekparker/delve/cmd/dlv 并确保dlv在您的$GOPATH/bin

  • 安装Visual Studio 代码

  • 启动 VS Code 快速打开 ( Ctrl+ P),粘贴此命令:ext install Go,然后按 Enter。

  • 点击安装Rich Go language support for Visual Studio Code

  • 单击Enable并重新启动 Visual Studio Code

  • Visual Studio Code打开文件夹Ctrl++中,例如ShiftE``$GOPATH\src\hello\

  • 然后hello.go从该文件夹打开(或创建新文件Ctrl+N并将其保存在此文件夹中):

    package main

    import "fmt"

    func main() { fmt.Println("Hello World!") i := 101 fmt.Println(i) }

  • 然后打开调试器Ctrl++Shift``D

  • 在这一行:i := 101按下F9以设置或切换断点。

  • 如果要求选择环境,请按F5开始调试或运行应用程序:选择Go

  • F10跳过。

  • F11步入。

  • Shift+F11退出。

  • Shift+F5停止调试。

  • Ctrl+ Shift+F5重新启动调试。

我的launch.json未受影响:

{
    "version": "0.2.0",
    "configurations": [
        {
            "name": "Launch",
            "type": "go",
            "request": "launch",
            "mode": "debug",
            "remotePath": "",
            "port": 2345,
            "host": "127.0.0.1",
            "program": "${workspaceRoot}",
            "env": {},
            "args": [],
            "showLog": true
        }
    ]
}

结果:

在此处输入图像描述

好了,本文到此结束,带大家了解了《如何在 Visual Studio Code 中使用 Delve 调试器》,希望本文对你有所帮助!关注golang学习网公众号,给大家分享更多Golang知识!

声明:本文转载于:Golang技术栈 如有侵犯,请联系study_golang@163.com删除
相关阅读
更多>
最新阅读
更多>
课程推荐
更多>