How do I debug a Go program? I have been using the Gedit Go IDE, but it doesn't have debugging. Is there a way to step though my code and inspect memory? Or am I stuck with print statements? Can I use OutputDebugString?
|
feedback
|
|
The Go linkers now emit DWARF debugging symbols that can be interpreted by gdb version 7.x. Highlight from the blog post linked above: You can...
There are still some inconveniences:
Some things don't work:
| |||
|
feedback
|
|
There is an experimental debugger package called ogle. Not sure how well it works. | |||
|
feedback
|
|
It's unfortunate, but the best way right now is to use print functions. The built-in print and println will work, but the functions in fmt will sometimes work better depending on what information you're after. | |||
|
feedback
|
|
Perhaps some step by step instructions for getting started with GDB would help. I created silly.go containing:
After running I can then type
It would be interesting to see if the Eclipse/CDT debugger and/or DDD would work with Go. | ||||
|
feedback
|