Skip to content

Commit f249d32

Browse files
committed
debug
1 parent 156ea59 commit f249d32

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/bootstrap/bootstrap.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1009,6 +1009,7 @@ def build_bootstrap(self):
10091009
eprint("Building bootstrap")
10101010

10111011
args = self.build_bootstrap_cmd(env)
1012+
print("Running", args, "in", self.rust_root)
10121013
# Run this from the source directory so cargo finds .cargo/config
10131014
run(args, env=env, verbose=self.verbose, cwd=self.rust_root)
10141015

@@ -1018,6 +1019,7 @@ def build_bootstrap(self):
10181019
def build_bootstrap_cmd(self, env):
10191020
"""For tests."""
10201021
build_dir = os.path.join(self.build_dir, "bootstrap")
1022+
print("Building bootstrap in", build_dir)
10211023
if self.clean and os.path.exists(build_dir):
10221024
shutil.rmtree(build_dir)
10231025
# `CARGO_BUILD_TARGET` breaks bootstrap build.

0 commit comments

Comments
 (0)