bandera de opción gcc -c

gcc -c compila archivos fuente sin vincularlos.

Sintaxis

$ gcc -c [options] [source files]

Ejemplo

Escriba el archivo fuente myfile.c :

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

 

Compile myfile.c :

$ gcc -c myfile.c

Esta compilación generó un archivo objeto myfile.o .

 


Ver también

Advertising

GCC
MESAS RÁPIDAS