1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-29 20:17:45 +00:00

Refactor and simplify build for utilities.

For coreutils, there are two build artifacts:

  1. multicall executable (each utility is a separate static library)
  2. individual utilities (still separate library with main wrapper)

To avoid namespace collision, each utility crate is defined as
"uu_{CMD}". The end user only sees the original utility name. This
simplifies build.rs.

Also, the thin wrapper for the main() function is no longer contained in
the crate. It has been separated into a dedicated file. This was
necessary to work around Cargo's need for the crate name attribute to
match the name in the respective Cargo.toml.
This commit is contained in:
Joseph Crail 2015-12-07 21:42:08 -05:00
parent d6039c1b22
commit b90d253584
224 changed files with 682 additions and 695 deletions

View file

@ -177,5 +177,5 @@ rand="*"
tempdir="*"
[[bin]]
name="uutils"
path="src/uutils/uutils.rs"
name = "uutils"
path = "src/uutils/uutils.rs"