wok view gdb/description.txt @ rev 25503

f3: include extra programs
author Hans-G?nter Theisgen
date Fri Jan 27 10:37:43 2023 +0100 (15 months ago)
parents
children
line source
1 GDB, the GNU Project debugger, allows you to see what is going on "inside"
2 another program while it executes -- or what another program was doing at
3 the moment it crashed.
5 GDB can do four main kinds of things (plus other things in support of
6 these) to help you catch bugs in the act:
8 * Start your program, specifying anything that might affect its behavior.
9 * Make your program stop on specified conditions.
10 * Examine what has happened, when your program has stopped.
11 * Change things in your program, so you can experiment with correcting
12 the effects of one bug and go on to learn about another.
14 Those programs might be executing on the same machine as GDB (native),
15 on another machine (remote), or on a simulator.
16 GDB can run on most popular UNIX and Microsoft Windows variants, as well
17 as on Mac OS X.