Bendera opsi gcc -fPIC

gcc -fPIC menghasilkan kode independen posisi (PIC) untuk pustaka bersama.

Sintaksis

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

 

Gunakan -fpic daripada -fPIC untuk menghasilkan kode yang lebih efisien, jika didukung oleh kompilator platform.

Contoh

Tulis file sumber myfile.c :

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

 

Membangun myfile.c menghasilkan myfile.o :

$ gcc -fPIC -c myfile.c
$

 


Lihat juga

Advertising

GCC
TABEL CEPAT