Skip to content

Commit fad1b9c

Browse files
committed
Make x.py less verbose on failures
- Don't print the exact command run by rustbuild unless `--verbose` is set. This is almost always unhelpful, since it's just cargo with a lot of arguments. - Don't print "Build completed unsuccessfully" unless --verbose is set. You can already tell the build failed by the errors above, and the time isn't particularly helpful. - Don't print the full path to bootstrap. This is useless to everyone, even including when working on x.py itself. You can still opt-in to this being shown with `--verbose`, since it will throw an exception. Before: ``` error[E0432]: unresolved import `x` --> library/std/src/lib.rs:343:5 | 343 | use x; | ^ no external crate `x` error: aborting due to previous error For more information about this error, try `rustc --explain E0432`. error: could not compile `std` To learn more, run the command again with --verbose. command did not execute successfully: "/home/joshua/rustc4/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "check" "--target" "x86_64-unknown-linux-gnu" "-Zbinary-dep-depinfo" "-j" "8" "--release" "--features" "panic-unwind backtrace" "--manifest-path" "/home/joshua/rustc4/library/test/Cargo.toml" "--message-format" "json-render-diagnostics" expected success, got: exit status: 101 failed to run: /home/joshua/rustc4/build/bootstrap/debug/bootstrap check Build completed unsuccessfully in 0:00:13 ``` After: ``` error[E0432]: unresolved import `x` --> library/std/src/lib.rs:343:5 | 343 | use x; | ^ no external crate `x` error: aborting due to previous error For more information about this error, try `rustc --explain E0432`. error: could not compile `std` To learn more, run the command again with --verbose. ```
1 parent 96859db commit fad1b9c

File tree

2 files changed

+11
-4
lines changed

2 files changed

+11
-4
lines changed

src/bootstrap/bootstrap.py

+10-3
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ def unpack(tarball, tarball_suffix, dst, verbose=False, match=None):
138138
shutil.rmtree(os.path.join(dst, fname))
139139

140140

141-
def run(args, verbose=False, exception=False, **kwargs):
141+
def run(args, verbose=False, exception=False, is_bootstrap=False, **kwargs):
142142
"""Run a child program in a new process"""
143143
if verbose:
144144
print("running: " + ' '.join(args))
@@ -151,7 +151,14 @@ def run(args, verbose=False, exception=False, **kwargs):
151151
err = "failed to run: " + ' '.join(args)
152152
if verbose or exception:
153153
raise RuntimeError(err)
154-
sys.exit(err)
154+
# For most failures, we definitely do want to print this error, or the user will have no
155+
# idea what went wrong. But when we've successfully built bootstrap and it failed, it will
156+
# have already printed an error above, so there's no need to print the exact command we're
157+
# running.
158+
if is_bootstrap:
159+
sys.exit(1)
160+
else:
161+
sys.exit(err)
155162

156163

157164
def require(cmd, exit=True):
@@ -1170,7 +1177,7 @@ def bootstrap(help_triggered):
11701177
env["BOOTSTRAP_CONFIG"] = toml_path
11711178
if build.rustc_commit is not None:
11721179
env["BOOTSTRAP_DOWNLOAD_RUSTC"] = '1'
1173-
run(args, env=env, verbose=build.verbose)
1180+
run(args, env=env, verbose=build.verbose, is_bootstrap=True)
11741181

11751182

11761183
def main():

src/bootstrap/compile.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1366,7 +1366,7 @@ pub fn stream_cargo(
13661366

13671367
// Make sure Cargo actually succeeded after we read all of its stdout.
13681368
let status = t!(child.wait());
1369-
if !status.success() {
1369+
if builder.is_verbose() && !status.success() {
13701370
eprintln!(
13711371
"command did not execute successfully: {:?}\n\
13721372
expected success, got: {}",

0 commit comments

Comments
 (0)