diff options
| author | Jorge Aparicio <japaricious@gmail.com> | 2016-07-26 16:17:14 -0500 |
|---|---|---|
| committer | Jorge Aparicio <japaricious@gmail.com> | 2016-07-30 15:39:13 -0500 |
| commit | 9ffd0fe5a75b8eb640f0bd94385c7b5f675c7e95 (patch) | |
| tree | 5e647dbeb8aba3e0bf88cff9a50fb12f1f5eb010 /src/liballoc_jemalloc | |
| parent | f7247d1071206db45103c994b0077fcb0d8f75cf (diff) | |
| download | rust-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.rs | 4 |
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" {} |
