We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9e8c4e6 commit b6d93d9Copy full SHA for b6d93d9
src/libpanic_unwind/lib.rs
@@ -39,6 +39,10 @@ cfg_if::cfg_if! {
39
if #[cfg(miri)] {
40
#[path = "miri.rs"]
41
mod imp;
42
+ // On MSVC we need the SEH lang items as well...
43
+ #[cfg(all(target_env = "msvc", not(target_arch = "aarch64")))]
44
+ #[allow(unused)]
45
+ mod seh;
46
} else if #[cfg(target_os = "emscripten")] {
47
#[path = "emcc.rs"]
48
0 commit comments