Skip to content

Commit c77c0d0

Browse files
authored
Unrolled build for rust-lang#122797
Rollup merge of rust-lang#122797 - alexcrichton:fix-compile-wasm64, r=Mark-Simulacrum Fix compile of wasm64-unknown-unknown target This target is a Tier 3 target so it's not tested on CI, and it's broken since last used so this commit fixes a small unwind-related issue that cropped up in the meantime.
2 parents 548e14b + 2758435 commit c77c0d0

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

library/unwind/src/lib.rs

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
#![feature(staged_api)]
55
#![feature(c_unwind)]
66
#![feature(strict_provenance)]
7+
#![cfg_attr(target_arch = "wasm64", feature(simd_wasm64))]
78
#![cfg_attr(not(target_env = "msvc"), feature(libc))]
89
#![cfg_attr(
910
all(target_family = "wasm", not(target_os = "emscripten")),

library/unwind/src/wasm.rs

+4-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,10 @@ pub unsafe fn _Unwind_RaiseException(exception: *mut _Unwind_Exception) -> _Unwi
5959
wasm_throw(0, exception.cast())
6060
} else {
6161
let _ = exception;
62-
core::arch::wasm32::unreachable()
62+
#[cfg(target_arch = "wasm32")]
63+
core::arch::wasm32::unreachable();
64+
#[cfg(target_arch = "wasm64")]
65+
core::arch::wasm64::unreachable();
6366
}
6467
}
6568
}

0 commit comments

Comments
 (0)