Skip to content

Commit 7eeb5b9

Browse files
authored
Rollup merge of #156573 - richArved:patch-1, r=Mark-Simulacrum
Add unwinder_private_data_size for wasm64 target Fixes missing unwinder_private_data_size for the wasm64 architecture
2 parents 77b66f1 + aa5b5a2 commit 7eeb5b9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

library/unwind/src/libunwind.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ pub const unwinder_private_data_size: usize = 2;
7272
#[cfg(any(target_arch = "riscv64", target_arch = "riscv32"))]
7373
pub const unwinder_private_data_size: usize = 2;
7474

75-
#[cfg(all(target_arch = "wasm32", target_os = "emscripten"))]
75+
#[cfg(all(target_family = "wasm", target_os = "emscripten"))]
7676
pub const unwinder_private_data_size: usize = 20;
7777

7878
#[cfg(all(target_arch = "wasm32", any(target_os = "linux", target_os = "wasi")))]

0 commit comments

Comments
 (0)