indicador d’opció gcc -c

gcc -c compila fitxers font sense enllaçar.

Sintaxi

$ gcc -c [options] [source files]

Exemple

Escriviu el fitxer font myfile.c :

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

 

Compileu myfile.c :

$ gcc -c myfile.c

Aquesta compilació ha generat un fitxer objecte myfile.o .

 


Vegeu també

Advertising

GCC
TAULES RÀPIDES