gcc -g option flag

gcc -g menghasilkan informasi debug untuk digunakan oleh debugger GDB.

 

pilihan deskripsi
-g0 tidak ada informasi debug
-g1 informasi debug minimal
-g informasi debug default
-g3 informasi debug maksimal

Sintaksis

$ gcc -glevel [options] [source files] [object files] [-o output file]

Contoh

Tulis file sumber myfile.c :

// myfile.c
#include <stdio.h/
 
void main()
{
    printf("Program run!!\n");
}

 

Bangun myfile.c di terminal dan jalankan gdb untuk men-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
$

 


Lihat juga

Advertising

GCC
TABEL CEPAT