Skip to content

Minimal example of a Rust app that builds its own std

Notifications You must be signed in to change notification settings

1tgr/xargo-barebones

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 

Repository files navigation

About this repository

Three projects, each with their own Cargo.toml:

  1. std_dep. Depends only on core. Represents some low-level OS dependency that std builds on.
  2. std. Depends on core and std_dep. Represents the real Rust std.
  3. app. Depends on core, std_dep and std. Represents a real app.

Replacement of std is enabled via app/Xargo.toml:

[dependencies]
core = { }
std = { path = "../libstd", stage = 1 }

How to build

  1. cargo install xargo

  2. cd app

  3. 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
    

About

Minimal example of a Rust app that builds its own std

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages