gcc -g génère des informations de débogage à utiliser par le débogueur GDB.
option | la description |
---|---|
-g0 | aucune information de débogage |
-g1 | informations de débogage minimales |
-g | informations de débogage par défaut |
-g3 | informations de débogage maximales |
$ gcc -glevel [options] [source files] [object files] [-o output file]
Ecrire le fichier source myfile.c :
// myfile.c
#include <stdio.h/
void main()
{
printf("Program run!!\n");
}
Construisez myfile.c sur le terminal et exécutez gdb pour déboguer:
$ gcc -g myfile.c -o myfile
$ gdb myfile
(gdb) run
Starting program: /home/ubuntu/myfile
Program run!!
Program exited with code 012.
(gdb) quit
$