package main import ( "os" "github.com/derekparker/delve/cmd/dlv/cmds" "github.com/derekparker/delve/pkg/version" ) // Build is the git sha of this binaries build. var Build string func main() { if Build != "" { version.DelveVersion.Build = Build } os.Setenv("CGO_CFLAGS", "-O -g") cmds.New(false).Execute() }