tags:

views:

849

answers:

4

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?

+11  A: 

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.

sean riley
what is f part of FPic mean?
f doesn't mean anything, it's just part of the option name.
Zifre
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
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
+2  A: 

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

0x6adb015
+4  A: 

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.
Nikolai N Fetissov
+3  A: 

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.

Mark Beckwith
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
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