We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 9d9216f + 673867e commit 94ee84fCopy full SHA for 94ee84f
src/bootstrap/src/core/builder/cargo.rs
@@ -580,11 +580,10 @@ impl Builder<'_> {
580
}
581
582
// FIXME: the following components don't build with `-Zrandomize-layout` yet:
583
- // - wasm-component-ld, due to the `wast`crate
584
// - rust-analyzer, due to the rowan crate
585
- // 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
586
// rustflags.
587
- if self.config.rust_randomize_layout && mode != Mode::ToolStd && mode != Mode::ToolRustc {
+ if self.config.rust_randomize_layout && mode != Mode::ToolRustc {
588
rustflags.arg("-Zrandomize-layout");
589
590
0 commit comments