Skip to content

Commit f7adfca

Browse files
authored
Allow unprefixed jemalloc on musl targets (#70)
Signed-off-by: Jack Kleeman <[email protected]>
1 parent 417d62b commit f7adfca

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

jemalloc-sys/src/env.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ pub static NO_BG_THREAD_TARGETS: &[&str] = &["musl"];
1919
// (not jemalloc malloc), and then the standard library would free with jemalloc free,
2020
// causing a segfault.”
2121
// https://github.com/rust-lang/rust/commit/e3b414d8612314e74e2b0ebde1ed5c6997d28e8d
22-
// https://github.com/rust-lang/rust/commit/536011d929ecbd1170baf34e09580e567c971f95
2322
// https://github.com/rust-lang/rust/commit/9f3de647326fbe50e0e283b9018ab7c41abccde3
2423
// https://github.com/rust-lang/rust/commit/ed015456a114ae907a36af80c06f81ea93182a24
25-
pub static NO_UNPREFIXED_MALLOC_TARGETS: &[&str] = &["android", "dragonfly", "musl", "darwin"];
24+
pub static NO_UNPREFIXED_MALLOC_TARGETS: &[&str] = &["android", "dragonfly", "darwin"];

0 commit comments

Comments
 (0)