Shared libraries
Shared libraries
Posted Nov 26, 2025 18:46 UTC (Wed) by bluca (subscriber, #118303)In reply to: Shared libraries by mb
Parent article: APT Rust requirement raises questions
Depends. Do you have enough memory available and is the system otherwise idle? Or is it near capacity with no room to spare and higher priority processes running and saturating whatever cache is available?
It's the difference between real production systems and synthetic benchmarks.
> Also please note that gnu-true doesn't use any shared library except for libc. Which is exactly the same in Rust.
It is not, because in the rust case you have the many-tenctacle monster that is the rust stdlib and whatever the cat, er, cargo dragged in that morning. So for coreutils really most of the stuff is in glibc so it's all already mapped, in the uutils case you load most of it every time from scratch.
