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

জিসিসি
°• CmtoInchesConvert.com •°