Skip to main content

wasmer_compiler/engine/unwind/
mod.rs

1cfg_select! {
2    all(windows, target_arch = "x86_64") => {
3        mod windows_x64;
4        pub use self::windows_x64::*;
5    }
6    unix => {
7        mod systemv;
8        pub use self::systemv::*;
9    }
10    _ => {
11        // Otherwise, we provide a dummy fallback without unwinding
12        mod dummy;
13        pub use self::dummy::DummyUnwindRegistry as UnwindRegistry;
14    }
15}