A link library contains precompiled object code. During linking, the linker uses the link library to complete the linking process. In Linux, there are two kinds of link libraries:
-
static link library (also know as
archives
) for static linking; -
shared link library for dynamic linking.
- Stevanovic 2014
- Kerrisk 2010
chapters 41, 42
- Drepper 2011