We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c241e14 commit 756013fCopy full SHA for 756013f
src/bootstrap/src/core/builder/cargo.rs
@@ -611,11 +611,10 @@ impl Builder<'_> {
611
}
612
613
// FIXME: the following components don't build with `-Zrandomize-layout` yet:
614
- // - wasm-component-ld, due to the `wast`crate
615
// - rust-analyzer, due to the rowan crate
616
- // 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
617
// rustflags.
618
- if self.config.rust_randomize_layout && mode != Mode::ToolStd && mode != Mode::ToolRustc {
+ if self.config.rust_randomize_layout && mode != Mode::ToolRustc {
619
rustflags.arg("-Zrandomize-layout");
620
621
0 commit comments