gcc -c ഓപ്ഷൻ ഫ്ലാഗ്

gcc -c ലിങ്കുചെയ്യാതെ ഉറവിട ഫയലുകൾ കംപൈൽ ചെയ്യുന്നു.

വാക്യഘടന

$ gcc -c [options] [source files]

ഉദാഹരണം

ഉറവിട ഫയൽ എഴുതുക myfile.c :

// myfile.c
#include <stdio.h/
 
void main()
{
    printf("Program run\n");
}

 

Myfile.c കംപൈൽ ചെയ്യുക :

$ gcc -c myfile.c

ഈ സമാഹാരം myfile.o ഒബ്ജക്റ്റ് ഫയൽ സൃഷ്ടിച്ചു .

 


ഇതും കാണുക

Advertising

ജിസിസി
ദ്രുത പട്ടികകൾ