flagga för gcc -fPIC-alternativ

gcc -fPIC genererar positionsoberoende kod (PIC) för delade bibliotek.

Syntax

$ gcc -fPIC [options] [source files] [object files] -o output file

 

Använd -fpic istället för -fPIC för att generera effektivare kod om den stöds av plattformskompilatorn.

Exempel

Skriv källfil myfile.c :

// myfile.c
#include <stdio.h/
 
int myfunc()
{
    printf("myfunc\n");
}

 

Bygg myfile.c genererar myfile.o :

$ gcc -fPIC -c myfile.c
$

 


Se även

Advertising

GCC
SNABBBORD