Search code examples
cldrelocationposition-independent-code

What is the difference between PIC code and `ld -r`?


I know both are used to make code that can be placed in different locations, but how does each work, and why?


Solution

  • For starters, they are options to different parts of the toolchain:

    • -fpic and -fPIC are GCC options that generates position-independent code. This affects the actual instructions chosen, to make the code run regardless of where it is located in memory. This requires support by the operating system's dynamic loader to actually make it runnable once loaded.
    • -r is a linker option that makes it emit relocatable code, i.e. code that can be linked again later on. It's part of ld's support for incremental linking.

    I think their usage doesn't overlap, you can create relocatable (library) code without using ld -r.