GoLand调试报错:Version of Delve is too old for this version of Go...

升级GOLANG过后,调试报错:

GoLand调试报错:Version of Delve is too old for this version of Go..._第1张图片

点开控制台那4行信息发现(当时忘了截展开后的图),它使用的是GoLand自带的dlv.exe,已不支持新版的GOLANG了,所以报错

解决方法:

直接贴个官方截图:GoLand调试报错:Version of Delve is too old for this version of Go..._第2张图片

运行命令后,GOPAT\bin目录下 会有一个dlv.exe  ,然后在goland>help>Edit Custom Properties 里面增加一行:

dlv.path=你的GOPATH路径\\bin\\dlv.exe  (新的dlv.exe路径)

重启GOLAND之后,方可大功告成

你可能感兴趣的:(debug,golang)