mirror of
https://github.com/fluencelabs/wasmer
synced 2025-04-25 10:22:19 +00:00
22 lines
528 B
Rust
22 lines
528 B
Rust
pub use wabt::wat2wasm;
|
|
use wasmer::compiler::Compiler;
|
|
|
|
#[cfg(feature = "backend-cranelift")]
|
|
pub fn get_compiler() -> impl Compiler {
|
|
use wasmer_clif_backend::CraneliftCompiler;
|
|
|
|
CraneliftCompiler::new()
|
|
}
|
|
|
|
#[cfg(feature = "backend-singlepass")]
|
|
pub fn get_compiler() -> impl Compiler {
|
|
use wasmer_singlepass_backend::SinglePassCompiler;
|
|
SinglePassCompiler::new()
|
|
}
|
|
|
|
#[cfg(feature = "backend-llvm")]
|
|
pub fn get_compiler() -> impl Compiler {
|
|
use wasmer_llvm_backend::LLVMCompiler;
|
|
LLVMCompiler::new()
|
|
}
|