2020-04-06 16:06:49 -07:00
|
|
|
mod cache;
|
2020-04-07 12:34:34 -07:00
|
|
|
#[cfg(all(target_os = "linux", feature = "loader-kernel"))]
|
|
|
|
mod kernel;
|
2020-04-15 16:31:05 -07:00
|
|
|
#[cfg(any(
|
|
|
|
feature = "backend-cranelift",
|
|
|
|
feature = "backend-llvm",
|
|
|
|
feature = "backend-singlepass"
|
|
|
|
))]
|
2020-04-06 16:06:49 -07:00
|
|
|
mod run;
|
|
|
|
mod selfupdate;
|
|
|
|
mod validate;
|
|
|
|
|
2020-04-07 12:34:34 -07:00
|
|
|
#[cfg(all(target_os = "linux", feature = "loader-kernel"))]
|
|
|
|
pub use kernel::*;
|
2020-04-15 16:31:05 -07:00
|
|
|
#[cfg(any(
|
|
|
|
feature = "backend-cranelift",
|
|
|
|
feature = "backend-llvm",
|
|
|
|
feature = "backend-singlepass"
|
|
|
|
))]
|
|
|
|
pub use run::*;
|
|
|
|
pub use {cache::*, selfupdate::*, validate::*};
|