增加 Golang Debug 问题及解决.

Signed-off-by: rick.chan <chenyang@autoai.com>
This commit is contained in:
rick.chan 2021-03-11 09:35:04 +08:00
parent 64970f532d
commit 991717bf58
1 changed files with 11 additions and 0 deletions

View File

@ -0,0 +1,11 @@
# Golang Debug 问题及解决
## 1.调试报错Version of Delve is too old for this version of Go
原因是 DLV 版本过低,使用:
```bash
go get github.com/go-delve/delve/cmd/dlv
```
命令升级 DLV 后重启下 goland 即可。