Golang debug 推荐使用 Delve 工具,项目地址:https://github.com/derekparker/delve
一、安装
照着 github 上 delve 项目的安装说明操作,go mod
模式下推荐使用第二种方式。
1.拉取最新 delve 项目代码到本地,编译安装。
# cd $GOPATH/src/
# git clone https://github.com/derekparker/delve.git
# cd delve/cmd/dlv/
# go build
# go install
国内环境go build
会报错:
go: golang.org/x/crypto@v0.0.0-20180614174826-fd5f17ee7299: unrecognized import path "golang.org/x/crypto" (https fetch: Get https://golang.org/x/crypto?go-get=1: dial tcp 216.239.37.1:443: i/o timeout)
go: golang.org/x/sys@v0.0.0-20180614134839-8883426083c0: unrecognized import path "golang.org/x/sys" (https fetch: Get https://golang.org/x/sys?go-get=1: dial tcp 216.239.37.1:443: i/o timeout)
go: golang.org/x/arch@v0.0.0-20171004143515-077ac972c2e4: unrecognized import path "golang.org/x/arch" (https fetch: Get https://golang.org/x/arch?go-get=1: dial tcp 216.239.37.1:443: i/o timeout)
原因是 Golang 官网被墙了,这里手动修改go.mod
文件,把项目地址替换为 github 上的地址,如:
# vim ../../go.mod
# 添加下面替换:
replace (
golang.org/x/arch v0.0.0-20171004143515-077ac972c2e4 => github.com/golang/arch v0.0.0-20171004143515-077ac972c2e4
golang.org/x/crypto v0.0.0-20180614174826-fd5f17ee7299 => github.com/golang/crypto v0.0.0-20180614174826-fd5f17ee7299
golang.org/x/sys v0.0.0-20180614134839-8883426083c0 => github.com/golang/sys v0.0.0-20180614134839-8883426083c0
)
如图:然后重新编译安装,没有报错则成功。
2.添加$GOPATH/bin
到环境变量,执行dlv
命令,查看:
二、使用 Delve 调试程序
1.查看 Delve 支持命令:dlv
或 dlv --help
,如下:
Available Commands:
attach Attach to running process and begin debugging.
connect Connect to a headless debug server.
core Examine a core dump.
debug Compile and begin debugging main package in current directory, or the package specified.
exec Execute a precompiled binary, and begin a debug session.
help Help about any command
run Deprecated command. Use 'debug' instead.
test Compile test binary and begin debugging program.
trace Compile and begin tracing program.
version Prints version.
2.查询单个命令详情,dlv [command] --help
,如:dlv debug --help
3.调试程序
手动创建一个helloworld
项目,main.go
里面打印一些信息,如:
package main
import "fmt"
func main() {
fmt.Println("hello world")
}
执行debug
调试:
# cd helloword/
# go mod init
# dlv debug main.go
开启调试成功,执行help
查看 debug 命令:
PS:
因为开启了go mod
模式,所以 debug 前这里需要go mod init
初始化 mod,不然会报错:
go: cannot find main module; see 'go help modules'
4.其他命令参数,自行调试。
有疑问加站长微信联系(非本文作者)