Add --quiet flag to x.py and bootstrap to suppress output#154616
Add --quiet flag to x.py and bootstrap to suppress output#154616erickt wants to merge 1 commit intorust-lang:mainfrom
--quiet flag to x.py and bootstrap to suppress output#154616Conversation
This adds a `--quiet` flag to x.py and bootstrap to suppress some of the output when compiling Rust. It works by passing the flag down to the underlying cargo, cmake, ninja, or make processes.
|
This PR modifies If appropriate, please update This PR changes how LLVM is built. Consider updating src/bootstrap/download-ci-llvm-stamp. |
|
rustbot has assigned @Mark-Simulacrum. Use Why was this reviewer chosen?The reviewer was selected based on:
|
|
I can only look into these this weekend, but cc also #154587 (It would be nice to be careful that we don't use --quiet to mean different things) |
|
Ha! What a coincidence. I’m certainly intending to have the same semantics as that PR, so I think they should be compatible with each other. I’m happy to wait for it to land since it beat me by a few hours, then I can match the style with whatever you finalize on. |
|
(I think either one can land first, I was just remarking just in case we somehow have |
This adds a
--quietflag to x.py and bootstrap to suppress some of the output when compiling Rust. It works by passing the flag down to the underlying cargo, cmake, ninja, or make processes.