summary refs log tree commit diff
path: root/src/bootstrap/rustc.rs
AgeCommit message (Collapse)AuthorLines
2016-03-08rustbuild: Fixup calling rustdoc in various stagesAlex Crichton-0/+17
The stage0 rustdoc comes from the snapshot, and we need a shim like with `rustc` to pass `--cfg` for now.
2016-02-28rustbuild: Only pass RUSTC_FLAGS to target compilesAlex Crichton-3/+3
These flags aren't applicable to build scripts, and may actuall wreak havoc.
2016-02-11Add a Cargo-based build systemAlex Crichton-0/+91
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!