compile_error!("Wasmtime's runtime is being compiled for an architecture that it does not support");
cfg_if::cfg_if! {
if #[cfg(target_arch = "x86")] {
compile_error!("\
the tracking issue for i686 support is https://github.com/bytecodealliance/wasmtime/issues/1980 \
");
} else if #[cfg(target_arch = "arm")] {
compile_error!("\
the tracking issue for arm support is https://github.com/bytecodealliance/wasmtime/issues/1173 \
");
} else 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 reached_entry_sp(_fp: usize, _entry_sp: usize) -> bool {
panic!()
}
pub fn assert_entry_sp_is_aligned(_sp: usize) {
panic!()
}
pub fn assert_fp_is_aligned(_fp: usize) {
panic!()
}