- Uses standard
core
etc. - Provides a minimal self-hosted
std
(see https://doc.rust-lang.org/book/no-stdlib.html) - Our
std
referenced viastage=1
in Xargo.toml (see japaric/xargo#117)
Three projects, each with their own Cargo.toml
:
std_dep
. Depends only oncore
. Represents some low-level OS dependency thatstd
builds on.std
. Depends oncore
andstd_dep
. Represents the real Ruststd
.app
. Depends oncore
,std_dep
andstd
. Represents a real app.
Replacement of std
is enabled via app/Xargo.toml
:
[dependencies]
core = { }
std = { path = "../libstd", stage = 1 }
-
cargo install xargo
-
cd app
-
xargo build
Compiling core v0.0.0 (file:///$HOME/.rustup/toolchains/nightly-x86_64-apple-darwin/lib/rustlib/src/rust/src/libcore) Finished release [optimized] target(s) in 14.55 secs Compiling std_dep v0.1.0 (file:///$REPO/libstd_dep) Compiling std v0.1.0 (file:///$REPO/libstd) Finished release [optimized] target(s) in 0.19 secs Compiling libc v0.2.23 Compiling std_dep v0.1.0 (file:///$REPO/libstd_dep) Compiling app v0.1.0 (file:///$REPO/app) Finished dev [unoptimized + debuginfo] target(s) in 1.34 secs