1. 程式人生 > 其它 >Go——vscode除錯go語言

Go——vscode除錯go語言

Mac機下執行命令

更改代理,安裝庫

go env
export GOPROXY=https://goproxy.io,direct go get -v github.com/go-delve/delve/cmd/dlv go get -v github.com/ramya-rao-a/go-outline go get -v github.com/uudashr/gopkgs/v2/cmd/gopkgs

vscode的launch.json檔案

{
    // Use IntelliSense to learn about possible attributes.
    // Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 "version": "0.2.0", "configurations": [ { "name": "test_go", "type": "go", "request": "launch", "mode": "debug", "program": "${workspaceFolder}/src/test.go" }, {
"name": "gateway", "type": "go", "request": "launch", "mode": "debug", "cwd":"${workspaceFolder}/src", "program": "${workspaceFolder}/src/main.go", "env": {}, "args": [] } ] }

除錯效果