Skip to content

Commit 6edc596

Browse files
committed
Auto merge of #41168 - Shizmob:jemalloc-musl, r=alexcrichton
Fix jemalloc support for musl Just like DragonFlyBSD, using the same symbols as the system allocator will result in a segmentation fault at runtime due to allocator mismatches. As such, it's better to prefix the jemalloc symbols instead, avoiding crashes. We encountered this problem on a dynamically-linked musl target (with patches to Rust to make that possible, see #40113). It may not show up immediately obviously on the current statically-linked CRT targets.
2 parents 8d85504 + 536011d commit 6edc596

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

src/liballoc_jemalloc/build.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ fn main() {
129129
// should be good to go!
130130
cmd.arg("--with-jemalloc-prefix=je_");
131131
cmd.arg("--disable-tls");
132-
} else if target.contains("dragonfly") {
132+
} else if target.contains("dragonfly") || target.contains("musl") {
133133
cmd.arg("--with-jemalloc-prefix=je_");
134134
}
135135

src/liballoc_jemalloc/lib.rs

+5-5
Original file line numberDiff line numberDiff line change
@@ -35,23 +35,23 @@ mod imp {
3535
// request it as unprefixing cause segfaults (mismatches in allocators).
3636
extern "C" {
3737
#[cfg_attr(any(target_os = "macos", target_os = "android", target_os = "ios",
38-
target_os = "dragonfly", target_os = "windows"),
38+
target_os = "dragonfly", target_os = "windows", target_env = "musl"),
3939
link_name = "je_mallocx")]
4040
fn mallocx(size: size_t, flags: c_int) -> *mut c_void;
4141
#[cfg_attr(any(target_os = "macos", target_os = "android", target_os = "ios",
42-
target_os = "dragonfly", target_os = "windows"),
42+
target_os = "dragonfly", target_os = "windows", target_env = "musl"),
4343
link_name = "je_rallocx")]
4444
fn rallocx(ptr: *mut c_void, size: size_t, flags: c_int) -> *mut c_void;
4545
#[cfg_attr(any(target_os = "macos", target_os = "android", target_os = "ios",
46-
target_os = "dragonfly", target_os = "windows"),
46+
target_os = "dragonfly", target_os = "windows", target_env = "musl"),
4747
link_name = "je_xallocx")]
4848
fn xallocx(ptr: *mut c_void, size: size_t, extra: size_t, flags: c_int) -> size_t;
4949
#[cfg_attr(any(target_os = "macos", target_os = "android", target_os = "ios",
50-
target_os = "dragonfly", target_os = "windows"),
50+
target_os = "dragonfly", target_os = "windows", target_env = "musl"),
5151
link_name = "je_sdallocx")]
5252
fn sdallocx(ptr: *mut c_void, size: size_t, flags: c_int);
5353
#[cfg_attr(any(target_os = "macos", target_os = "android", target_os = "ios",
54-
target_os = "dragonfly", target_os = "windows"),
54+
target_os = "dragonfly", target_os = "windows", target_env = "musl"),
5555
link_name = "je_nallocx")]
5656
fn nallocx(size: size_t, flags: c_int) -> size_t;
5757
}

0 commit comments

Comments
 (0)