ജിഡിബി ഡീബഗ്ഗർ ഉപയോഗിക്കുന്നതിനുള്ള ഡീബഗ് വിവരങ്ങൾ gcc -g സൃഷ്ടിക്കുന്നു.
ഓപ്ഷൻ | വിവരണം |
---|---|
-g0 | ഡീബഗ് വിവരങ്ങളൊന്നുമില്ല |
-g1 | കുറഞ്ഞ ഡീബഗ് വിവരങ്ങൾ |
-g | സ്ഥിരസ്ഥിതി ഡീബഗ് വിവരങ്ങൾ |
-g3 | പരമാവധി ഡീബഗ് വിവരങ്ങൾ |
$ gcc -glevel [options] [source files] [object files] [-o output file]
ഉറവിട ഫയൽ എഴുതുക myfile.c :
// myfile.c
#include <stdio.h/
void main()
{
printf("Program run!!\n");
}
ബിൽഡ് മ്യ്ഫിലെ.ച് ടെർമിനൽ റൺ ജിഡിബി ഡീബഗ്ഗുചെയ്യുന്നതും:
$ gcc -g myfile.c -o myfile
$ gdb myfile
(gdb) run
Starting program: /home/ubuntu/myfile
Program run!!
Program exited with code 012.
(gdb) quit
$