uutils has more overhead
uutils has more overhead
Posted Oct 24, 2025 13:55 UTC (Fri) by pixelbeat (guest, #7440)In reply to: uutils has more overhead by ebee_matteo
Parent article: Date bug affects Ubuntu 25.10 automatic updates
Yes agreed, though it's a different decision with uutils as the separate binaries are significantly larger.
Note also that GNU coreutils can be built as a multi-call binary. Testing the performance of that here shows that the overhead is not rust specific, but rather the dynamic linker overhead loading the full set of libs linked by the multi-call binaries
$ ./configure --enable-single-binary --quiet && make -n $(nproc) $ time seq 10000 | xargs -n1 src/true real 0m21.595s user 0m7.437s sys 0m14.151s
