gcc -D는 전처리 기가 사용할 매크로를 정의합니다.
$ gcc -Dname [options] [source files]
[-o output file]
$ gcc -Dname=definition [options]
[source files] [-o output file]
소스 파일 myfile.c 작성 :
// myfile.c
#include <stdio.h/
void main()
{
#ifdef DEBUG
printf("Debug run\n");
#else
printf("Release run\n");
#endif
}
myfile.c를 빌드 하고 정의 된 DEBUG로 실행하십시오.
$ gcc -D DEBUG myfile.c -o myfile
$ ./myfile
Debug run
$
또는 myfile.c를 빌드 하고 정의 된 DEBUG없이 실행하십시오.
$ gcc myfile.c -o myfile
$ ./myfile
Release run
$