gcc -D-alternativflagga

gcc -D definierar ett makro som ska användas av förprocessorn.

Syntax

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

Exempel

Skriv källfil myfile.c :

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

 

Bygg myfile.c och kör den med DEBUG definierad:

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

 

Eller bygg myfile.c och kör den utan DEBUG definierad:

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

 


Se även

Advertising

GCC
SNABBBORD