Skip to content

Commit 417953f

Browse files
committed
Disable jemalloc on s390x as well (closes #38596)
See also #37320 and #37392
1 parent ac5046c commit 417953f

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/librustc_back/target/s390x_unknown_linux_gnu.rs

+2
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ pub fn target() -> TargetResult {
1919
// Pass the -vector feature string to LLVM to respect this assumption.
2020
base.features = "-vector".to_string();
2121
base.max_atomic_width = Some(64);
22+
// see #36994
23+
base.exe_allocation_crate = "alloc_system".to_string();
2224

2325
Ok(Target {
2426
llvm_target: "s390x-unknown-linux-gnu".to_string(),

0 commit comments

Comments
 (0)