Sha256: d5ed19ffb52f9ff6ef876bbc5956d97773c7d361a08fb57c6592cdb48f7061ed

Contents?: true

Size: 326 Bytes

Versions: 7

Compression:

Stored size: 326 Bytes

Contents

cfg_if::cfg_if! {
    if #[cfg(all(windows, any(target_arch = "x86_64", target_arch = "aarch64")))] {
        mod winx64;
        pub use self::winx64::*;
    } else if #[cfg(unix)] {
        mod systemv;
        pub use self::systemv::*;
    } else {
        compile_error!("unsupported target platform for unwind");
    }
}

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
wasmtime-8.0.0 ./ext/cargo-vendor/wasmtime-jit-8.0.0/src/unwind.rs
wasmtime-7.0.0 ./ext/cargo-vendor/wasmtime-jit-7.0.0/src/unwind.rs
wasmtime-6.0.1 ./ext/cargo-vendor/wasmtime-jit-6.0.1/src/unwind.rs
wasmtime-6.0.0 ./ext/cargo-vendor/wasmtime-jit-6.0.0/src/unwind.rs
wasmtime-5.0.0 ./ext/cargo-vendor/wasmtime-jit-5.0.0/src/unwind.rs
wasmtime-0.4.1 ./ext/cargo-vendor/wasmtime-jit-4.0.0/src/unwind.rs
wasmtime-0.4.0 ./ext/cargo-vendor/wasmtime-jit-4.0.0/src/unwind.rs