We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 69ca9e9 + 453add4 commit 5d86064Copy full SHA for 5d86064
.travis.yml
@@ -1,5 +1,6 @@
1
language: rust
2
sudo: required
3
+dist: trusty
4
rust:
5
- 1.0.0
6
- beta
src/unix/mod.rs
@@ -105,9 +105,14 @@ cfg_if! {
105
} else if #[cfg(target_env = "musl")] {
106
#[link(name = "c", kind = "static")]
107
extern {}
108
+ } else if #[cfg(any(target_os = "macos", target_os = "ios"))] {
109
+ #[link(name = "c")]
110
+ #[link(name = "m")]
111
+ extern {}
112
} else {
113
#[link(name = "c")]
114
#[link(name = "m")]
115
+ #[link(name = "rt")]
116
117
}
118
0 commit comments