Merge branch 'master' into netlink

This commit is contained in:
Alexander Polakov 2015-11-21 02:02:30 +03:00
commit 5d86064fc5
2 changed files with 6 additions and 0 deletions

View File

@ -1,5 +1,6 @@
language: rust
sudo: required
dist: trusty
rust:
- 1.0.0
- beta

View File

@ -105,9 +105,14 @@ cfg_if! {
} else if #[cfg(target_env = "musl")] {
#[link(name = "c", kind = "static")]
extern {}
} else if #[cfg(any(target_os = "macos", target_os = "ios"))] {
#[link(name = "c")]
#[link(name = "m")]
extern {}
} else {
#[link(name = "c")]
#[link(name = "m")]
#[link(name = "rt")]
extern {}
}
}