1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-13 12:55:24 +02:00
tldr/pages.fr/common/gdb.md
Managor a70b923d8f
*: add option placeholders to translations (#15933)
Co-authored-by: Darío Hereñú <magallania@gmail.com>
2025-03-19 00:36:34 +02:00

24 lines
559 B
Markdown

# gdb
> Le débogueur GNU.
> Plus d'informations : <https://www.gnu.org/software/gdb>.
- Débogue un exécutable :
`gdb {{exécutable}}`
- Attache un processus à gdb :
`gdb {{[-p|--pid]}} {{identifiant_processus}}`
- Débogue avec un fichier comme image mémoire :
`gdb {{[-c|--core]}} {{fichier}} {{exécutable}}`
- Execute les commandes gdb données au démarrage :
`gdb {{[-ex|--eval-command]}} "{{commandes}}" {{exécutable}}`
- Démarre gdb en passant des arguments à l'exécutable :
`gdb --args {{exécutable}} {{argument1}} {{argument2}}`