gcc -fPIC genererar positionsoberoende kod (PIC) för delade bibliotek.
$ 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.
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
$