Linker and Libraries Guide

Shared Object Dependencies

When the runtime linker creates the memory segments for an object file, the dependencies (recorded in DT_NEEDED entries of the dynamic structure) tell what shared objects are needed to supply the program's services. By repeatedly connecting referenced shared objects and their dependencies, the runtime linker builds a complete process image.

When resolving symbolic references, the runtime linker examines the symbol tables with a breadth-first search. That is, it first looks at the symbol table of the executable program itself, then at the symbol tables of the DT_NEEDED entries (in order), then at the second level DT_NEEDED entries, and so on.


Note -

Even when a shared object is referenced multiple times in the dependency list, the runtime linker will connect the object only once to the process.


Names in the dependency list are copies either of the DT_SONAME strings or the path names of the shared objects used to build the object file.