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

 

ഡയറക്ടറി പ്രോജ് / എസ്ആർസി ഉൾപ്പെടുത്താതെ 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

ജി.സി.സി
°• CmtoInchesConvert.com •°