„gcc-D“ apibrėžia makrokomandą, kurią naudos pirminis procesorius.
$ gcc -Dname [options] [source files]
[-o output file]
$ gcc -Dname=definition [options]
[source files] [-o output file]
Parašykite šaltinio failą myfile.c :
// myfile.c
#include <stdio.h/
void main()
{
#ifdef DEBUG
printf("Debug run\n");
#else
printf("Release run\n");
#endif
}
Sukurkite myfile.c ir paleiskite jį naudodami apibrėžtą DEBUG:
$ gcc -D DEBUG myfile.c -o myfile
$ ./myfile
Debug run
$
Arba sukurkite myfile.c ir paleiskite jį be DEBUG apibrėžimo:
$ gcc myfile.c -o myfile
$ ./myfile
Release run
$