about summary refs log tree commit diff
path: root/src/bootstrap/job.rs
AgeCommit message (Collapse)AuthorLines
2020-04-10Enforce Python 3 as much as possibleGuillaume Gomez-1/+6
2020-01-11use winapi for non-stdlib Windows bindingsAndy Russell-78/+10
2019-12-22Format the worldMark Rousskov-23/+33
2019-06-17Make use of `ptr::null(_mut)` instead of casting zeroLzu Tao-4/+5
2018-12-25Remove licensesMark Rousskov-10/+0
2018-12-10bootstrap: fix editionljedrz-1/+1
2018-12-07Various minor/cosmetic improvements to codeAlexander Regueiro-5/+5
2018-08-29Replace usages of 'bad_style' with 'nonstandard_style'.Corey Farwell-1/+1
`bad_style` is being deprecated in favor of `nonstandard_style`: - https://github.com/rust-lang/rust/issues/41646
2018-05-05Misc tweaksJohn Kåre Alsaker-6/+4
2017-11-21fix some typosMartin Lindhe-1/+1
2017-05-16Add an option to run rustbuild on low priorityJohn Kåre Alsaker-1/+8
This is a resurrection of #40776, combining their Windows setup with an additional setup on Unix to set the program group's niceness to +10 (low-but-not-lowest priority) when the `low_priority` option is on.
2016-12-07Preserve inherited mode flags.Vadim Chugunov-1/+2
2016-12-07Prevent Windows from displaying UI on errors.Vadim Chugunov-0/+10
2016-11-08rustbuild: Tweak for vendored dependenciesAlex Crichton-4/+71
A few changes are included here: * The `winapi` and `url` dependencies were dropped. The source code for these projects is pretty weighty, and we're about to vendor them, so let's not commit to that intake just yet. If necessary we can vendor them later but for now it shouldn't be necessary. * The `--frozen` flag is now always passed to Cargo, obviating the need for tidy's `cargo_lock` check. * Tidy was updated to not check the vendor directory Closes #34687
2016-07-05rustbuild: Remove the `build` directoryAlex Crichton-0/+111
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/`.