gcc -I ಆಯ್ಕೆ ಧ್ವಜ

gcc -I ಸೇರಿಸುತ್ತದೆ ಹೆಡರ್ ಫೈಲ್‌ಗಳ ಡೈರೆಕ್ಟರಿ.

ಸಿಂಟ್ಯಾಕ್ಸ್

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

ಉದಾಹರಣೆ

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);
}

 

ಡೈರೆಕ್ಟರಿ proj / src ಅನ್ನು ಸೇರಿಸದೆಯೇ myfile.c ಅನ್ನು ನಿರ್ಮಿಸಿ :

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

 

ಡೈರೆಕ್ಟರಿ proj / src ನೊಂದಿಗೆ myfile.c ಅನ್ನು ನಿರ್ಮಿಸಿ :

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

 


ಸಹ ನೋಡಿ

Advertising

ಜಿಸಿಸಿ
ರಾಪಿಡ್ ಟೇಬಲ್‌ಗಳು