添加 --check-go-version=false 到 delve 调试器

我用IDEA调试了一个go程序,但是因为报错退出了:

Version of Delve is too old for this version of Go (maximum supported version 1.13, suppress this error with --check-go-version=false)

我该如何添加--check-go-version=false


拉风的咖菲猫
浏览 1218回答 2
2回答

眼眸繁星

您可以添加lunch.json.example:{    "version": "0.2.0",    "configurations": [        {            "name": "DebugServer",            "type": "go",            "request": "launch",            "mode": "debug",            "program": "${workspaceFolder}",            "dlvFlags": ["--check-go-version=false"]        }]}

呼啦一阵风

将 GoLand 升级到 2019.2.2 或更高版本,问题将得到解决。这不是 Delve 问题,它是由我们 JetBrains 将 Delve 嵌入 IDE 造成的。
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Go