vote up 6 vote down star
1

I know the '-fPIC' option has something to do with resolving addresses and independence between individual modules, but I'm not sure what it really means. Can you explain?

flag
I'm not sure why this was voted down, but it seems like a valid question to me. – Paul Morie Jun 8 at 21:12
Argh, I am confused too.. A dear "down-voter", is there anything I can do to improve the quality of this question? and what exactly you didn't like about my question? thanks – Sasha Jun 8 at 21:15
1  
This is a question you can easily find in the gcc docs or man page. Stack overflow should not become a repository of man pages. – Brian Neal Jun 9 at 15:30

4 Answers

vote up 11 vote down check

PIC = Position Independant Code

and to quote man gcc:

If supported for the target machine, emit position-independent code, suitable for dynamic linking and avoiding any limit on the size of the global offset table. This option makes a difference on the m68k, PowerPC and SPARC. Position-independent code requires special support, and therefore works only on certain machines.

use this when building shared objects (*.so) on those mentioned architectures.

link|flag
what is f part of FPic mean? – Sasha Jun 8 at 21:03
f doesn't mean anything, it's just part of the option name. – Zifre Jun 8 at 21:07
2  
There is a difference between fpic and fPIC. They both do the same thing but fpic uses a shorter relative offset where available. Thus compiling with fpic can potentially produce smaller files. Unfortunately it does not always work as expected so use fPIC. Also Note not all processors support the shorter offsets so it may not make a difference. – Martin York Jun 8 at 22:23
The 'f' is a hangover from the way that gcc handeled command line arguments (this was a couple of years ago and they have changed this part of the code I have not looked recently). But at the time only certain letters or combinations were allowed under different conditions (there was a very complex language for defining command line arguments) as a result the 'f' was used to make it easy to define as a command line argument. – Martin York Jun 8 at 22:26
vote up 3 vote down

The f is the gcc prefix for options that "control the interface conventions used in code generation"

The PIC stands for "Position Independent Code", it is a specialization of the fpic for m68K and SPARC.

Edit: After reading page 11 of the document referenced by 0x6adb015, and the comment by coryan, I made a few changes:

This option only makes sense for shared libraries and you're telling the OS your using a Global Offset Table, GOT. This means all your address references are relative to the GOT, and the code can be shared accross multiple processes.

Otherwise, without this option, the loader would have to modify all the offsets itself.

Needless to say, we almost always use -fpic/PIC.

link|flag
I thought the OS was free to load the library in any virtual address, but without pic/PIC the loader has to modify the code and adjust all the absolute jumps + indirections to the actual locations of the routines / libraries. With pic/PIC the code is not modified and thus it is really shared across multiple processes. – coryan Jun 8 at 22:29
Multiple processes are largely coincidental - they key point is that the code can be loaded at any virtual address with an absolute minimum of address fixups. – Jonathan Leffler Jun 9 at 4:46
vote up 4 vote down

man gcc says:

-fpic
  Generate position-independent code (PIC) suitable for use in a shared
  library, if supported for the target machine. Such code accesses all
  constant addresses through a global offset table (GOT). The dynamic
  loader resolves the GOT entries when the program starts (the dynamic
  loader is not part of GCC; it is part of the operating system). If
  the GOT size for the linked executable exceeds a machine-specific
  maximum size, you get an error message from the linker indicating
  that -fpic does not work; in that case, recompile with -fPIC instead.
  (These maximums are 8k on the SPARC and 32k on the m68k and RS/6000.
  The 386 has no such limit.)

  Position-independent code requires special support, and therefore
  works only on certain machines. For the 386, GCC supports PIC for
  System V but not for the Sun 386i. Code generated for the
  IBM RS/6000 is always position-independent.

-fPIC
  If supported for the target machine, emit position-independent code,
  suitable for dynamic linking and avoiding any limit on the size of
  the global offset table.  This option makes a difference on the m68k
  and the SPARC.

  Position-independent code requires special support, and therefore
  works only on certain machines.
link|flag
vote up 2 vote down

A very long, but the best of answers lies here.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.