Skip to content

Commit ce6adcc

Browse files
committed
Prevent stable libtest from supporting -Zunstable-options
1 parent 8a73f50 commit ce6adcc

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/bootstrap/compile.rs

+6
Original file line numberDiff line numberDiff line change
@@ -339,6 +339,12 @@ pub fn std_cargo(builder: &Builder<'_>, target: TargetSelection, stage: u32, car
339339
""
340340
};
341341

342+
// `libtest` uses this to know whether or not to support
343+
// `-Zunstable-options`.
344+
if !builder.unstable_features() {
345+
cargo.env("CFG_DISABLE_UNSTABLE_FEATURES", "1");
346+
}
347+
342348
let mut features = String::new();
343349

344350
// Cranelift doesn't support `asm`.

0 commit comments

Comments
 (0)