We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 156ea59 commit f249d32Copy full SHA for f249d32
src/bootstrap/bootstrap.py
@@ -1009,6 +1009,7 @@ def build_bootstrap(self):
1009
eprint("Building bootstrap")
1010
1011
args = self.build_bootstrap_cmd(env)
1012
+ print("Running", args, "in", self.rust_root)
1013
# Run this from the source directory so cargo finds .cargo/config
1014
run(args, env=env, verbose=self.verbose, cwd=self.rust_root)
1015
@@ -1018,6 +1019,7 @@ def build_bootstrap(self):
1018
1019
def build_bootstrap_cmd(self, env):
1020
"""For tests."""
1021
build_dir = os.path.join(self.build_dir, "bootstrap")
1022
+ print("Building bootstrap in", build_dir)
1023
if self.clean and os.path.exists(build_dir):
1024
shutil.rmtree(build_dir)
1025
# `CARGO_BUILD_TARGET` breaks bootstrap build.
0 commit comments