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

升级GOLANG过后,调试报错:

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

解决方法:

直接贴个官方截图:

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

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

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

你可能感兴趣的:(GoLand调试报错:Version of Delve is too old for this version of Go...)