wok view gdb/description.txt @ rev 25037

Up glza (0.11.4)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat May 21 21:38:29 2022 +0000 (23 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.