about summary refs log tree commit diff
path: root/src/liballoc_jemalloc
diff options
context:
space:
mode:
authorJorge Aparicio <japaricious@gmail.com>2016-07-26 16:17:14 -0500
committerJorge Aparicio <japaricious@gmail.com>2016-07-30 15:39:13 -0500
commit9ffd0fe5a75b8eb640f0bd94385c7b5f675c7e95 (patch)
tree5e647dbeb8aba3e0bf88cff9a50fb12f1f5eb010 /src/liballoc_jemalloc
parentf7247d1071206db45103c994b0077fcb0d8f75cf (diff)
downloadrust-9ffd0fe5a75b8eb640f0bd94385c7b5f675c7e95.tar.gz
rust-9ffd0fe5a75b8eb640f0bd94385c7b5f675c7e95.zip
arm-musl targets now use cfg(env = "musl")
Diffstat (limited to 'src/liballoc_jemalloc')
-rw-r--r--src/liballoc_jemalloc/lib.rs4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/liballoc_jemalloc/lib.rs b/src/liballoc_jemalloc/lib.rs
index ccf3d978fe4..347e97e6ffc 100644
--- a/src/liballoc_jemalloc/lib.rs
+++ b/src/liballoc_jemalloc/lib.rs
@@ -36,9 +36,7 @@ use libc::{c_int, c_void, size_t};
 #[cfg_attr(target_os = "android", link(name = "gcc"))]
 #[cfg_attr(all(not(windows),
                not(target_os = "android"),
-               not(target_env = "musl"),
-               not(target_env = "musleabi"),
-               not(target_env = "musleabihf")),
+               not(target_env = "musl")),
            link(name = "pthread"))]
 #[cfg(not(cargobuild))]
 extern "C" {}