40 releases (15 stable)
new 3.2.0-beta.1 | Mar 23, 2023 |
---|---|
3.1.0 | Dec 12, 2022 |
3.0.2 | Nov 26, 2022 |
3.0.0-alpha.4 | Jul 29, 2022 |
1.0.0-alpha5 | Nov 6, 2020 |
#28 in WebAssembly
87,320 downloads per month
Used in 37 crates
(13 directly)
720KB
15K
SLoC
wasmer-compiler-cranelift

This crate contains a compiler implementation based on Cranelift.
Usage
use wasmer::{Store, EngineBuilder};
use wasmer_compiler_cranelift::Cranelift;
let compiler = Cranelift::new();
let mut store = Store::new(compiler);
Note: you can find a full working example using Cranelift compiler here.
When to use Cranelift
We recommend using this compiler crate only for development
proposes. For production we recommend using wasmer-compiler-llvm
as it offers a much better runtime speed (50% faster on average).
Acknowledgments
This project borrowed some of the function lowering from
cranelift-wasm
.
Please check Wasmer ATTRIBUTIONS
to further see licenses and other
attributions of the project.
Dependencies
~15MB
~313K SLoC