gcc -fPIC genererer positionsuafhængig kode (PIC) til delte biblioteker.
$ gcc -fPIC [options] [source files] [object files] -o output file
Brug -fpic i stedet for -fPIC til at generere mere effektiv kode, hvis den understøttes af platformskompilatoren.
Skriv kildefil myfile.c :
// myfile.c
#include <stdio.h/
int
myfunc()
{
printf("myfunc\n");
}
Build myfile.c genererer myfile.o :
$ gcc -fPIC -c myfile.c
$