Skip to content

Commit fdb7279

Browse files
committed
enable unstable feature on x clean [PATH]
Since #111076 enables unstable cargo feature (`public-dependency`), we need to ensure that unstable features are enabled before reading libstd Cargo.toml. Signed-off-by: onur-ozkan <work@onurozkan.dev>
1 parent d8dbf7c commit fdb7279

File tree

1 file changed

+6
-0
lines changed
  • src/bootstrap/src/core/build_steps

1 file changed

+6
-0
lines changed

src/bootstrap/src/core/build_steps/clean.rs

+6
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,12 @@ macro_rules! clean_crate_tree {
6868
let compiler = self.compiler;
6969
let target = compiler.host;
7070
let mut cargo = builder.bare_cargo(compiler, $mode, target, "clean");
71+
72+
// Since https://github.com/rust-lang/rust/pull/111076 enables
73+
// unstable cargo feature (`public-dependency`), we need to ensure
74+
// that unstable features are enabled before reading libstd Cargo.toml.
75+
cargo.env("RUSTC_BOOTSTRAP", "1");
76+
7177
for krate in &*self.crates {
7278
cargo.arg("-p");
7379
cargo.arg(krate);

0 commit comments

Comments
 (0)