about summary refs log tree commit diff
path: root/src/bootstrap/bin/main.rs
AgeCommit message (Collapse)AuthorLines
2019-12-22Format the worldMark Rousskov-1/+1
2019-08-27rustbuild: allow disabling deny(warnings) for bootstrapMarc-Antoine Perennou-3/+0
When deny-warnings is not specified or set to true, the behaviour is the same as before. When deny-warnings is set to false, warnings are now allowed Fixes #63911 Signed-off-by: Marc-Antoine Perennou <Marc-Antoine@Perennou.com>
2019-07-28Deny `unused_lifetimes` through rustbuildVadim Petrochenkov-1/+1
2019-07-28Remove lint annotations in specific crates that are already enforced by ↵Vadim Petrochenkov-1/+2
rustbuild Remove some random unnecessary lint `allow`s
2019-02-25Remove some unnecessary 'extern crate'Taiki Endo-2/+0
2018-12-25Remove licensesMark Rousskov-10/+0
2017-08-13Unify flags into config.Mark Simulacrum-4/+3
This introduces a slight change in behavior, where we unilaterally respect the --host and --target parameters passed for all sanity checking and runtime configuration.
2017-06-20Fixes bootstrapping with custom cargo/rustc.Mark Simulacrum-7/+1
config.mk is now always read when parsing the configuration to prevent this from reoccurring in the future, hopefully.
2017-02-04README path correctionking6cong-2/+2
2016-07-05rustbuild: Remove the `build` directoryAlex Crichton-0/+37
The organization in rustbuild was a little odd at the moment where the `lib.rs` was quite small but the binary `main.rs` was much larger. Unfortunately as well there was a `build/` directory with the implementation of the build system, but this directory was ignored by GitHub on the file-search prompt which was a little annoying. This commit reorganizes rustbuild slightly where all the library files (the build system) is located directly inside of `src/bootstrap` and all the binaries now live in `src/bootstrap/bin` (they're small). Hopefully this should allow GitHub to index and allow navigating all the files while maintaining a relatively similar layout to the other libraries in `src/`.