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.
$

 

உருவாக்க myfile.c கொண்டு அடைவு அடங்கும் கணிக்கப்பட்டவை / மூல :

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

 


மேலும் காண்க

Advertising

ஜி.சி.சி
விரைவான அட்டவணைகள்