പ്രീപ്രൊസസ്സർ ഉപയോഗിക്കേണ്ട മാക്രോയെ 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
}
ബിൽഡ് മ്യ്ഫിലെ.ച് ഡീബഗ്ഗുചെയ്യുന്നതും അത് വായിച്ചപ്പോഴാണ് നിർവചിച്ചിരിക്കുന്നത്:
$ gcc -D DEBUG myfile.c -o myfile
$ ./myfile
Debug run
$
അല്ലെങ്കിൽ myfile.c നിർമ്മിച്ച് ഡീബഗ് നിർവചിക്കാതെ പ്രവർത്തിപ്പിക്കുക:
$ gcc myfile.c -o myfile
$ ./myfile
Release run
$