Goland DEBUG报错(could not launch process: decoding dwarf section info at offset 0x0: too short)

问题:

升级GO版本到1.13.4后发现Goland(版本:goland 2017)的Debug报错,如下:could not launch process: decoding dwarf section info at offset 0x0: too short。

原因:

Goland的dlv不是新版本,导致不能debug调试。

解决方案:

1、更新dlv,执行如下命令:

go get -u github.com/derekparker/delve/cmd/dlv

如果下载慢,可以使用gopm包工具下载:

11、gopm的安装方法如下:

go get -v -u github.com/gpmgo/gopm

12、执行下载:

gopm get -g github.com/derekparker/delve/cmd/dlv 

下载完后在你的GOPATH路径下运行go install github.com/derekparker/delve/cmd/dlv,会在你的GOPATH/bin路径下生成dlv.exe

gopm get 之后不会自动生成dlv.exe文件,需要手工执行go install命令生成,而go get 会自动生成exe文件

Goland DEBUG报错(could not launch process: decoding dwarf section info at offset 0x0: too short)_第1张图片

2、修改Goland的配置,帮助->编辑自定义属性,在里面增加新版dlv的路径配置:dlv.path=$GOPATH/bin/dlv

注意:$GOPATH为你的gopath路径,使用绝对路径。

Goland DEBUG报错(could not launch process: decoding dwarf section info at offset 0x0: too short)_第2张图片

Goland DEBUG报错(could not launch process: decoding dwarf section info at offset 0x0: too short)_第3张图片

3、重启Goland IDE,再次debug调试,问题解决。

 

参考:https://blog.csdn.net/chinawangfei/article/details/84338628#commentsedit

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