summaryrefslogtreecommitdiffstats
path: root/library/std/src/sys/solid/env.rs
diff options
context:
space:
mode:
Diffstat (limited to 'library/std/src/sys/solid/env.rs')
-rw-r--r--library/std/src/sys/solid/env.rs9
1 files changed, 9 insertions, 0 deletions
diff --git a/library/std/src/sys/solid/env.rs b/library/std/src/sys/solid/env.rs
new file mode 100644
index 000000000..6855c113b
--- /dev/null
+++ b/library/std/src/sys/solid/env.rs
@@ -0,0 +1,9 @@
+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 = "";
+}