When I step through a debugging session with gdb, it prints out some information for me. How do I stop this. Here's an example:
Breakpoint 1, 0x100000d4 in ?? ()
(gdb) si
0x100000d8 in ?? ()
(gdb) si
0x100000dc in ?? ()
(gdb)
Here I want to remove the lines that say 0x100000d8 in ?? ()
. I can't find anything in the documentation about suppressing this output. Any ideas?
Thanks Tim