|
|
|
|
|
by tux3
335 days ago
|
|
If you mean updating some dependency without recompiling the final binary, that's not possible with static linking. However the ELF format does support complex symbol resolution, even for static objects. You can have weak and optional symbols, ELF interposition to override a symbol, and so forth. But I feel like for most libraries it's best to keep it simple, unless you really need the complexity. |
|