When gdb is used for debugging purposes in java: I just don't know how to use the debugger. First you set a breakpoint, like:
For windows, there is a recent enough gdb build in mingw, but it doesn't seem to include the python module you can import (still supports python scripting in gdb). Can you post your most tricky and useful commands while you run a debugger like gdb or dbx. How is it compared to other debuggers?
I have mingw installed and it works great. Gdb will ask for commands for that breakpoint. Your executable file is missing the symbolic information that gdb needs to display the relevant source code. Thus, libpython.py is intended specifically for the python interpreter inside gdb, and it helps gdb print python representations (v=[]) instead of just memory addresses.
I have looked for documentation on this and found nothing. However, i noticed that some. Scripting is a nice gdb feature.