Crates.io | wasmer-clif-backend |
lib.rs | wasmer-clif-backend |
version | 0.17.1 |
source | src |
created_at | 2019-01-24 00:44:24.837556 |
updated_at | 2020-06-24 22:10:27.936912 |
description | Wasmer runtime Cranelift compiler backend |
homepage | |
repository | https://github.com/wasmerio/wasmer |
max_upload_size | |
id | 110322 |
size | 123,486 |
Wasmer is a standalone JIT WebAssembly runtime, aiming to be fully compatible with Emscripten, Rust and Go. Learn more.
This crate represents the Cranelift backend integration for Wasmer.
If you are using the wasmer
CLI, you can specify the backend with:
wasmer run program.wasm --backend=cranelift
If you are using Wasmer Embedded, you can specify
the Cranelift backend to the compile_with
function:
use wasmer_clif_backend::CraneliftCompiler;
// ...
let module = wasmer_runtime_core::compile_with(&wasm_binary[..], &CraneliftCompiler::new());