gcc -I option flag

gcc -I tilføjer inkluderer mappe med overskriftsfiler.

Syntaks

$ gcc -Idir [options] [source files] [object files] [-o output file]

Eksempel

proj/src/myheader.h:

// myheader.h
#define NUM1 5

 

minfil.c:

// myfile.c
#include <stdio.h>
#include "myheader.h"
 
void main()
{
    int num = NUM1;
    printf("num=%d\n", num);
}

 

Byg minfil.c uden inkludere mappe proj/src :

$ gcc myfile.c -o myfile
myfile.c:2:22: fatal error: myheader.h: No such file or directory
compilation terminated.
$

 

Byg myfile.c med include directory proj/src :

$ gcc -Iproj/src myfile.c -o myfile
$ ./myfile
num=5
$

 


Se også

Advertising

GCC
°• CmtoInchesConvert.com •°