Skip to content

Commit 6a34feb

Browse files
committed
Set RUSTC_BOOTSTRAP to some value.
Environment variables on windows can't be empty.
1 parent 5665bdf commit 6a34feb

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

mk/main.mk

+1-1
Original file line numberDiff line numberDiff line change
@@ -372,7 +372,7 @@ CFG_INFO := $(info cfg: disabling unstable features (CFG_DISABLE_UNSTABLE_FEATUR
372372
# Turn on feature-staging
373373
export CFG_DISABLE_UNSTABLE_FEATURES
374374
# Subvert unstable feature lints to do the self-build
375-
export RUSTC_BOOTSTRAP
375+
export RUSTC_BOOTSTRAP=1
376376
endif
377377
ifdef CFG_MUSL_ROOT
378378
export CFG_MUSL_ROOT

src/bootstrap/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -873,7 +873,7 @@ impl Build {
873873

874874
/// Adds the compiler's bootstrap key to the environment of `cmd`.
875875
fn add_bootstrap_key(&self, cmd: &mut Command) {
876-
cmd.env("RUSTC_BOOTSTRAP", "");
876+
cmd.env("RUSTC_BOOTSTRAP", "1");
877877
// FIXME: Transitionary measure to bootstrap using the old bootstrap logic.
878878
// Remove this once the bootstrap compiler uses the new login in Issue #36548.
879879
cmd.env("RUSTC_BOOTSTRAP_KEY", "62b3e239");

0 commit comments

Comments
 (0)