Delve
The goal of the project is to provide a simple, full featured debugging tool for Go. Delve should be easy to invoke and easy to use. Chances are if you’re using a debugger, things aren’t going your way. With that in mind, Delve should stay out of your way as much as possible.
Installation Instructions
Linux
Linux
Create Delve folder
{
"path": "{{ .PTools }}/delve/1.26.1"
} Run Delve Install
{
"command_parameters": [
"install",
"github.com/go-delve/delve/cmd/dlv@v1.26.1"
],
"environment": [
"GOBIN={{ .PTools }}/delve/1.26.1"
],
"executable": "go",
"ignore_errors": false,
"timeout": "3m0s",
"tool_ref": "go"
}
MacOS
MacOS
Create Delve folder
{
"path": "{{ .PTools }}/delve/1.26.1"
} Run Delve Install
{
"command_parameters": [
"install",
"github.com/go-delve/delve/cmd/dlv@v1.26.1"
],
"environment": [
"GOBIN={{ .PTools }}/delve/1.26.1"
],
"executable": "go",
"ignore_errors": false,
"timeout": "3m0s",
"tool_ref": "go"
}