mirror of
https://github.com/fluencelabs/wasmer
synced 2025-04-12 12:26:03 +00:00
8 lines
175 B
Rust
8 lines
175 B
Rust
#[cfg(unix)]
|
|
mod unix;
|
|
#[cfg(unix)]
|
|
pub use self::unix::*;
|
|
|
|
#[cfg(target_family = "windows")]
|
|
compile_error!("windows not yet supported for the llvm-based compiler backend");
|