summary refs log tree commit diff
path: root/src/bootstrap/build/util.rs
AgeCommit message (Collapse)AuthorLines
2016-04-06rustbuild: Add helper to abstract hard_link/copyAlex Crichton-1/+10
Also helps provide context if it fails.
2016-03-08rustbuild: Add crate documentation generationAlex Crichton-1/+0
Run `cargo doc` to generate all documentation for the standard library, and also add a target which generates documentation for the compiler as well (but don't enable it by default).
2016-02-11Add a Cargo-based build systemAlex Crichton-0/+97
This commit is the start of a series of commits which start to replace the makefiles with a Cargo-based build system. The aim is not to remove the makefiles entirely just yet but rather just replace the portions that invoke the compiler to do the bootstrap. This commit specifically adds enough support to perform the bootstrap (and all the cross compilation within) along with generating documentation. More commits will follow up in this series to actually wire up the makefiles to call this build system, so stay tuned!