gcc -D zastava opcije

gcc -D definira makronaredbu koju će koristiti pretprocesor.

Sintaksa

$ gcc -Dname [options] [source files] [-o output file]
$ gcc -Dname=definition [options] [source files] [-o output file]

Primjer

Napišite izvornu datoteku myfile.c :

// myfile.c
#include <stdio.h/
 
void main()
{
    #ifdef DEBUG   
       printf("Debug run\n");
    #else
       printf("Release run\n");
    #endif
}

 

Izgradite myfile.c i pokrenite ga s DEBUG definiranim:

$ gcc -D DEBUG myfile.c -o myfile
$ ./myfile
Debug run
$

 

Ili izgradite myfile.c i pokrenite ga bez definirane DEBUG:

$ gcc myfile.c -o myfile
$ ./myfile
Release run
$

 


Vidi također

Advertising

OUU
BRZE TABLICE