diff options
| author | Manish Goregaokar <manishsmail@gmail.com> | 2015-03-05 02:20:58 +0530 |
|---|---|---|
| committer | Manish Goregaokar <manishsmail@gmail.com> | 2015-03-05 12:39:07 +0530 |
| commit | 8a55fce389491d34823d98c081b7518b09b7a5e7 (patch) | |
| tree | b13898e54403d73b7c5fbf85268f31495d7bbbcd | |
| parent | acd9554fd65f25ff2922229a51ce3dce5ebf6f2e (diff) | |
| parent | 6de0dc4ce3c35c3ecd60b75519ba8060c59fe7e1 (diff) | |
| download | rust-8a55fce389491d34823d98c081b7518b09b7a5e7.tar.gz rust-8a55fce389491d34823d98c081b7518b09b7a5e7.zip | |
Rollup merge of #23029 - vhbit:ios-env-stab, r=alexcrichton
"body": null,
| -rw-r--r-- | src/libstd/env.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/libstd/env.rs b/src/libstd/env.rs index 1968ca4b9e7..c052a69bc34 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 = ""; } |
