דגל אפשרות gcc -g

gcc -g מייצר מידע איתור באגים שישמש את ניפוי הבאגים של GDB.

 

אוֹפְּצִיָה תיאור
-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");
}

 

בנה myfile.c במסוף והפעל את gdb לאיתור באגים:

$ gcc -g myfile.c -o myfile
$ gdb myfile
(gdb) run
Starting program: /home/ubuntu/myfile
Program run!!
Program exited with code 012.
(gdb) quit
$

 


ראה גם

Advertising

GCC
שולחנות מהירים