gcc -I seçeneği bayrağı

gcc -I başlık dosyalarının include dizinini ekler.

Sözdizimi

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

Misal

proj/src/myheader.h:

// myheader.h
#define NUM1 5

 

myfile.c:

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

 

Myfile.c dosyasını proj / src içerme dizini olmadan derleyin :

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

 

Myfile.c dosyasını proj / src içerme dizini ile derleyin :

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

 


Ayrıca bakınız

Advertising

GCC
HIZLI TABLOLAR