Ang gcc -g ay bumubuo ng impormasyong debug upang magamit ng GDB debugger.
pagpipilian | paglalarawan |
---|---|
-g0 | walang impormasyon sa pag-debug |
-g1 | kaunting impormasyon sa pag-debug |
-g | default na impormasyon sa pag-debug |
-g3 | impormasyong pinakamataas na debug |
$ gcc -glevel [options] [source files] [object files] [-o output file]
Sumulat ng mapagmulang file na myfile.c :
// myfile.c
#include <stdio.h/
void main()
{
printf("Program run!!\n");
}
Bumuo ng myfile.c sa terminal at patakbuhin ang gdb sa pag-debug:
$ gcc -g myfile.c -o myfile
$ gdb myfile
(gdb) run
Starting program: /home/ubuntu/myfile
Program run!!
Program exited with code 012.
(gdb) quit
$