Skip to content

Commit 96cfc75

Browse files
committed
Auto merge of rust-lang#132295 - the8472:remove-randomize-exclusion1, r=onur-ozkan
fixed wast version was released, remove randomization exemption
2 parents 00f2459 + 756013f commit 96cfc75

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/bootstrap/src/core/builder/cargo.rs

+2-3
Original file line numberDiff line numberDiff line change
@@ -608,11 +608,10 @@ impl Builder<'_> {
608608
}
609609

610610
// FIXME: the following components don't build with `-Zrandomize-layout` yet:
611-
// - wasm-component-ld, due to the `wast`crate
612611
// - rust-analyzer, due to the rowan crate
613-
// so we exclude entire categories of steps here due to lack of fine-grained control over
612+
// so we exclude an entire category of steps here due to lack of fine-grained control over
614613
// rustflags.
615-
if self.config.rust_randomize_layout && mode != Mode::ToolStd && mode != Mode::ToolRustc {
614+
if self.config.rust_randomize_layout && mode != Mode::ToolRustc {
616615
rustflags.arg("-Zrandomize-layout");
617616
}
618617

0 commit comments

Comments
 (0)