英文:
(Go) How can I use GDB debug on IntelliJ IDEA?
问题
我正在使用IntelliJ IDEA 15开发Go语言项目。
事先我在Mac上安装了GDB以进行调试。
然后我想在IntelliJ IDEA上使用GDB来调试Go语言项目。
然而,我找不到如何做到这一点。
如果有人知道,请给我一些建议。
提前谢谢。
英文:
I'm developping golang porjects using IntelliJ IDEA 15.
In advance I installed GDB to debug on mac.
Then I want to debug golang projects using GDB on IntelliJ IDEA.
However, I could't find how I can do that.
If someone know, please give me a advise.
Thank you in advance.
答案1
得分: 2
截至今天,不,你不能。然而,该插件集成了Delve,可以提供更好的Go应用程序调试体验(如果你使用的是Delve支持的平台)。请参考调试器链接:https://github.com/derekparker/delve
一旦GDB正确支持Go应用程序,情况可能会有所改变。
英文:
As of today, no, you cannot. However the plugin comes with Delve integrated which makes the debugging experience better for Go apps (if you are on the supported platforms by delve). See the debugger link: https://github.com/derekparker/delve
Once GDB will properly support Go apps, things might change of course.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论