We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e336b35 commit eec769fCopy full SHA for eec769f
src/bootstrap/src/core/build_steps/tool.rs
@@ -239,6 +239,19 @@ pub fn prepare_tool_cargo(
239
}
240
241
242
+ if compiler.stage != 0 {
243
+ if path.ends_with("rls")
244
+ || path.ends_with("clippy")
245
+ || path.ends_with("miri")
246
+ || path.ends_with("rustfmt")
247
+ || path.ends_with("rustdoc")
248
+ || path.ends_with("rustdoc-tool")
249
+ {
250
+ cargo.rustflag("-Cpanic=abort");
251
+ cargo.rustflag("-Cforce-unwind-tables=yes");
252
+ }
253
254
+
255
// clippy tests need to know about the stage sysroot. Set them consistently while building to
256
// avoid rebuilding when running tests.
257
cargo.env("SYSROOT", builder.sysroot(compiler));
0 commit comments