mirror of
https://github.com/rust-lang/rust.git
synced 2025-06-05 11:48:30 +00:00
10 lines
283 B
Rust
10 lines
283 B
Rust
![]() |
pub mod os {
|
||
|
pub const FAMILY: &str = "itron";
|
||
|
pub const OS: &str = "solid";
|
||
|
pub const DLL_PREFIX: &str = "";
|
||
|
pub const DLL_SUFFIX: &str = ".so";
|
||
|
pub const DLL_EXTENSION: &str = "so";
|
||
|
pub const EXE_SUFFIX: &str = "";
|
||
|
pub const EXE_EXTENSION: &str = "";
|
||
|
}
|