જીસીસી-ડી પ્રિપ્રોસેસર દ્વારા ઉપયોગમાં લેવા માટેના મેક્રોને વ્યાખ્યાયિત કરે છે.
$ 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