Sha256: 18488d1ca751a0146137a3234aa2b159e4d45949c11a922cf99518a2e5df7f76

Contents?: true

Size: 699 Bytes

Versions: 2

Compression:

Stored size: 699 Bytes

Contents

compile_error!("Wasmtime's runtime is being compiled for an architecture that it does not support");

cfg_if::cfg_if! {
    if #[cfg(target_arch = "riscv32")] {
    compile_error!("\
the tracking issue for riscv32 support is https://github.com/bytecodealliance/wasmtime/issues/8768 \
");
    } else {
    compile_error!("\
if you'd like feel free to file an issue for platform support at
https://github.com/bytecodealliance/wasmtime/issues/new
");
    }
}

pub fn get_stack_pointer() -> usize {
    panic!()
}

pub unsafe fn get_next_older_pc_from_fp(_fp: usize) -> usize {
    panic!()
}

pub const NEXT_OLDER_FP_FROM_FP_OFFSET: usize = 0;

pub fn assert_fp_is_aligned(_fp: usize) {
    panic!()
}

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
wasmtime-30.0.2 ./ext/cargo-vendor/wasmtime-30.0.2/src/runtime/vm/arch/unsupported.rs
wasmtime-29.0.0 ./ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/arch/unsupported.rs