From 6de0dc4ce3c35c3ecd60b75519ba8060c59fe7e1 Mon Sep 17 00:00:00 2001 From: Valerii Hiora Date: Wed, 4 Mar 2015 14:18:40 +0200 Subject: [PATCH] iOS: fallout of env stab --- src/libstd/env.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/libstd/env.rs b/src/libstd/env.rs index 1968ca4b9e705..c052a69bc343a 100644 --- a/src/libstd/env.rs +++ b/src/libstd/env.rs @@ -616,6 +616,9 @@ mod os { mod os { pub const FAMILY: &'static str = "unix"; pub const OS: &'static str = "ios"; + pub const DLL_PREFIX: &'static str = "lib"; + pub const DLL_SUFFIX: &'static str = ".dylib"; + pub const DLL_EXTENSION: &'static str = "dylib"; pub const EXE_SUFFIX: &'static str = ""; pub const EXE_EXTENSION: &'static str = ""; }