sinalizador de opção gcc -c

gcc -c compila arquivos fonte sem vinculação.

Sintaxe

$ gcc -c [options] [source files]

Exemplo

Grave o arquivo de origem myfile.c :

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

 

Compile myfile.c :

$ gcc -c myfile.c

Esta compilação gerou o arquivo objeto myfile.o .

 


Veja também

Advertising

GCC
TABELAS RÁPIDAS