gcc -D選項標誌

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
$

 


也可以看看

Advertising

GCC
快速表格