使用VSCode调试Golang程序(mac M1芯片)

使用VSCode调试Golang程序(mac M1芯片),第1张

使用VSCode调试Golang程序(mac M1芯片) 1 golang安装

go 1.16 版本已经支持Apple M1芯片,所以可以直接下载arm64版本的macos进行安装。

我的go 版本为:

go version go1.16.3 darwin/arm64
2 VScode插件

安装go插件

3 delve安装

delve用于debug Golang程序,一定要安装arm64版本的delve。切换到$GOPATH/src/github.com/oxisto目录,然后直接从github下载源码,编译安装:

git clone https://github.com/oxisto/delve.git
git checkout darwin-arm64-lldb
cd delve/cmd/dlv/ 
go build
go install

安装完成后,$GOPATH/bin目录下的dlv文件应该为最新的arm64版本

4 调试go程序

进入调试界面,选择GoLaunch右边的设置按钮,编辑launch.json文件。

launch.json内容如下,可以根据需要自行配置

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

在go程序中设置断点,即可开始调试

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/995529.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-21
下一篇 2022-05-21

发表评论

登录后才能评论

评论列表(0条)

保存