Shared libraries
Shared libraries
Posted Nov 26, 2025 8:34 UTC (Wed) by joib (subscriber, #8541)In reply to: Shared libraries by collinfunk
Parent article: APT Rust requirement raises questions
true and false are probably the ones that show the largest difference in startup cost since they are so trivial, but OTOH they are both shell builtins so the actual /usr/bin/{true,false} are probably almost never used.
For more complex binaries I suppose it comes down to more open()'s, and more but smaller memory mappings for dynamic linking vs fewer bigger memory mappings for the static linking case.
