Skip to content

Commit 3b56120

Browse files
committed
Auto merge of rust-lang#116532 - onur-ozkan:enable-rustflags-bootstrap-on-bootstrap, r=albertlarsan68
Add RUSTFLAGS_BOOTSTRAP to RUSTFLAGS for bootstrap compilation Adds `RUSTFLAGS_BOOTSTRAP` to `RUSTFLAGS` for bootstrap compilation when `RUSTFLAGS_BOOTSTRAP` exists in the environment. With this PR, `RUSTFLAGS_BOOTSTRAP` will affect every build(as we already do for rustc and std) compiled with stage0 compiler. Resolves rust-lang#94234
2 parents bf9a1c8 + 89d610c commit 3b56120

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

src/bootstrap/bootstrap.py

+7
Original file line numberDiff line numberDiff line change
@@ -954,6 +954,13 @@ def build_bootstrap_cmd(self, env):
954954
if deny_warnings:
955955
env["RUSTFLAGS"] += " -Dwarnings"
956956

957+
# Add RUSTFLAGS_BOOTSTRAP to RUSTFLAGS for bootstrap compilation.
958+
# Note that RUSTFLAGS_BOOTSTRAP should always be added to the end of
959+
# RUSTFLAGS to be actually effective (e.g., if we have `-Dwarnings` in
960+
# RUSTFLAGS, passing `-Awarnings` from RUSTFLAGS_BOOTSTRAP should override it).
961+
if "RUSTFLAGS_BOOTSTRAP" in env:
962+
env["RUSTFLAGS"] += " " + env["RUSTFLAGS_BOOTSTRAP"]
963+
957964
env["PATH"] = os.path.join(self.bin_root(), "bin") + \
958965
os.pathsep + env["PATH"]
959966
if not os.path.isfile(self.cargo()):

0 commit comments

Comments
 (0)