wasmer_compiler/engine/unwind/mod.rs
1cfg_if::cfg_if! {
2 if #[cfg(all(windows, target_arch = "x86_64"))] {
3 mod windows_x64;
4 pub use self::windows_x64::*;
5 } else if #[cfg(unix)] {
6 mod systemv;
7 pub use self::systemv::*;
8 } else {
9 // Otherwise, we provide a dummy fallback without unwinding
10 mod dummy;
11 pub use self::dummy::DummyUnwindRegistry as UnwindRegistry;
12 }
13}