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
$