Add support for i686-unknown-linux-musl

This commit is contained in:
Brian Anderson 2015-12-29 22:33:58 +00:00
parent 81ba4a78b5
commit bd3fe498e5
5 changed files with 80 additions and 2 deletions

View file

@ -168,7 +168,7 @@ impl Drop for Thread {
}
}
#[cfg(all(not(target_os = "linux"),
#[cfg(all(not(all(target_os = "linux", not(target_env = "musl"))),
not(target_os = "macos"),
not(target_os = "bitrig"),
not(all(target_os = "netbsd", not(target_vendor = "rumprun"))),
@ -181,7 +181,7 @@ pub mod guard {
}
#[cfg(any(target_os = "linux",
#[cfg(any(all(target_os = "linux", not(target_env = "musl")),
target_os = "macos",
target_os = "bitrig",
all(target_os = "netbsd", not(target_vendor = "rumprun")),