go 1.16 版本已经支持Apple M1芯片,所以可以直接下载arm64版本的macos进行安装。
我的go 版本为:
go version go1.16.3 darwin/arm64
2 VScode插件
安装go插件
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程序中设置断点,即可开始调试
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)