bootstrap.py: build bootstrap binary with --features=tracing if BOOTSTRAP_TRACING env var is set
This commit is contained in:
parent
1307c950c4
commit
a4b9aa3e6e
1 changed files with 4 additions and 0 deletions
|
|
@ -1129,6 +1129,10 @@ class RustBuild(object):
|
|||
"-Zroot-dir=" + self.rust_root,
|
||||
]
|
||||
args.extend("--verbose" for _ in range(self.verbose))
|
||||
|
||||
if "BOOTSTRAP_TRACING" in env:
|
||||
args.append("--features=tracing")
|
||||
|
||||
if self.use_locked_deps:
|
||||
args.append("--locked")
|
||||
if self.use_vendored_sources:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue