Goland开启debug,但是卡在compiling阶段
刚把go项目从vscode转到Goland上去,准备启动断点调试,但几乎每次都卡在了compiling阶段,
一直进行不下去,而且也不知道卡在哪个地方?
到网上到处查找,在这个链接上找到了解决方案。
https://stackoverflow.com/questions//how-to-set-up-debugging-in-goland
其实Goland是缺少了一个提示,
只有当项目的代码位于src目录下,debug模式才能够正常进行。
像这样改变下目录结构:
debug模式就能正常启动了。
环境说明:
Goland 2020.1
go 1.14.2
OS windows 10