about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/rtdeps.rs4
-rw-r--r--src/libstd/sys/unix/thread.rs8
2 files changed, 3 insertions, 9 deletions
diff --git a/src/libstd/rtdeps.rs b/src/libstd/rtdeps.rs
index f23ac32f51c..c2572dfa5e1 100644
--- a/src/libstd/rtdeps.rs
+++ b/src/libstd/rtdeps.rs
@@ -19,9 +19,7 @@
 //
 // On Linux, librt and libdl are indirect dependencies via std,
 // and binutils 2.22+ won't add them automatically
-#[cfg(all(target_os = "linux", not(any(target_env = "musl",
-                                       target_env = "musleabi",
-                                       target_env = "musleabihf"))))]
+#[cfg(all(target_os = "linux", not(any(target_env = "musl"))))]
 #[link(name = "dl")]
 #[link(name = "pthread")]
 extern {}
diff --git a/src/libstd/sys/unix/thread.rs b/src/libstd/sys/unix/thread.rs
index 7f05aec4e6e..65ebce0baa2 100644
--- a/src/libstd/sys/unix/thread.rs
+++ b/src/libstd/sys/unix/thread.rs
@@ -171,9 +171,7 @@ impl Drop for Thread {
     }
 }
 
-#[cfg(all(not(all(target_os = "linux", not(any(target_env = "musl",
-                                               target_env = "musleabi",
-                                               target_env = "musleabihf")))),
+#[cfg(all(not(all(target_os = "linux", not(any(target_env = "musl")))),
           not(target_os = "freebsd"),
           not(target_os = "macos"),
           not(target_os = "bitrig"),
@@ -187,9 +185,7 @@ pub mod guard {
 }
 
 
-#[cfg(any(all(target_os = "linux", not(any(target_env = "musl",
-                                           target_env = "musleabi",
-                                           target_env = "musleabihf"))),
+#[cfg(any(all(target_os = "linux", not(any(target_env = "musl"))),
           target_os = "freebsd",
           target_os = "macos",
           target_os = "bitrig",