Shared libraries
Shared libraries
Posted Nov 26, 2025 4:35 UTC (Wed) by collinfunk (subscriber, #169873)In reply to: Shared libraries by mb
Parent article: APT Rust requirement raises questions
Actually that is a great example. The way that Ubuntu builds them at least, uutils has much slower start up time than GNU coreutils.
Here is an example:
$ podman run --rm -it ubuntu:25.10
$ time for i in $(seq 10000); do /lib/cargo/bin/coreutils/true; done
real 0m21.966s
$ time for i in $(seq 10000); do gnutrue; done
real 0m7.110s
This is quite important since these commands are executed very frequently. I believe they are looking into improving it.
