We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 00f2459 + 756013f commit 96cfc75Copy full SHA for 96cfc75
src/bootstrap/src/core/builder/cargo.rs
@@ -608,11 +608,10 @@ impl Builder<'_> {
608
}
609
610
// FIXME: the following components don't build with `-Zrandomize-layout` yet:
611
- // - wasm-component-ld, due to the `wast`crate
612
// - rust-analyzer, due to the rowan crate
613
- // so we exclude entire categories of steps here due to lack of fine-grained control over
+ // so we exclude an entire category of steps here due to lack of fine-grained control over
614
// rustflags.
615
- if self.config.rust_randomize_layout && mode != Mode::ToolStd && mode != Mode::ToolRustc {
+ if self.config.rust_randomize_layout && mode != Mode::ToolRustc {
616
rustflags.arg("-Zrandomize-layout");
617
618
0 commit comments