wasmer_compiler_llvm/
lib.rs1#![doc(html_favicon_url = "https://wasmer.io/images/icons/favicon-32x32.png")]
2#![doc(html_logo_url = "https://github.com/wasmerio.png?size=200")]
3#![cfg_attr(docsrs, feature(doc_cfg))]
4
5#[cfg(target_os = "windows")]
6compile_error!(
7 "The LLVM compiler backend is not supported on Windows. Use the V8 backend instead."
8);
9
10mod abi;
11mod compiler;
12mod config;
13mod error;
14mod object_file;
15mod translator;
16
17pub use crate::compiler::LLVMCompiler;
18pub use crate::config::{InkwellMemoryBuffer, InkwellModule, LLVM, LLVMCallbacks, LLVMOptLevel};