You can check this tutorial in order to see if LiteIDE was properly configured with gdb in order to enable Go debugging session
To make sure the (GDB based) step-by-step debugger works you need to do the following:
Build -> Build Configuration... -> Custom -> BUILDARGS
-> Enter: -gcflags "-N -l"
Verify everything is working correctly by executing the following debug run:
File -> Open Folder -> Click: hello -> Choose
- Double click "
for.go
" in the "Folders" pane
Build -> Build
(Ctrl-B)
- Put cursor on line 19
- F9 (toggle breakpoint)
- F5 (start debugging)
- F5 (until green arrow is on line 19)
- Debug pane should show "Variables" tab with "i=4" and "j=7"
"core" generally refers to a core dump, so check if your program doesn't crash at this point, generating a core dump.