cd /your-folder && chmod a+x ./your-binary
gdb --args ./your-binary [args...]
. Orgdb -tui --args ./your-binary [args...]
for terminal UI.gdb -ex r --args ./your-binary [args...]
to run it automatically.b function
orb file:line
orb class:function
to set breakpointsr
to run or restart executions
to step in executionn
to step out executionc
to continue executionbt
to display backtrace (callstack)f number
to switch backtrace frame. Alsoup
anddown
to navigate.p symbol
to print values.info locals
to see a list.t number
to switch thread.info threads
to see a list.q
to quit debugger
See also GDB tutorials
cd /your-folder && gdb your-binary your-coredump.file
bt