gcc -g는 GDB 디버거에서 사용할 디버그 정보를 생성합니다.
선택권 | 기술 |
---|---|
-g0 | 디버그 정보 없음 |
-g1 | 최소 디버그 정보 |
-지 | 기본 디버그 정보 |
-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
$