- the old interface between HermitCore and the Rust Standard Library based on a small C library (newlib) - remove this interface and call directly the unikernel - remove the dependency to the HermitCore linker - use rust-lld as linker
9 lines
274 B
Rust
9 lines
274 B
Rust
pub mod os {
|
|
pub const FAMILY: &str = "";
|
|
pub const OS: &str = "hermit";
|
|
pub const DLL_PREFIX: &str = "";
|
|
pub const DLL_SUFFIX: &str = "";
|
|
pub const DLL_EXTENSION: &str = "";
|
|
pub const EXE_SUFFIX: &str = "";
|
|
pub const EXE_EXTENSION: &str = "";
|
|
}
|