Skip to content

Commit eec769f

Browse files
tmandryKobzol
authored andcommitted
panic=abort for tools
1 parent e336b35 commit eec769f

File tree

1 file changed

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

1 file changed

+13
-0
lines changed

src/bootstrap/src/core/build_steps/tool.rs

+13
Original file line numberDiff line numberDiff line change
@@ -239,6 +239,19 @@ pub fn prepare_tool_cargo(
239239
}
240240
}
241241

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+
242255
// clippy tests need to know about the stage sysroot. Set them consistently while building to
243256
// avoid rebuilding when running tests.
244257
cargo.env("SYSROOT", builder.sysroot(compiler));

0 commit comments

Comments
 (0)