Disable jemalloc on s390x as well (closes #38596)

See also #37320 and #37392
This commit is contained in:
Ximin Luo 2016-12-29 15:14:30 +01:00
parent ac5046cf67
commit 417953f238

View file

@ -19,6 +19,8 @@ pub fn target() -> TargetResult {
// Pass the -vector feature string to LLVM to respect this assumption.
base.features = "-vector".to_string();
base.max_atomic_width = Some(64);
// see #36994
base.exe_allocation_crate = "alloc_system".to_string();
Ok(Target {
llvm_target: "s390x-unknown-linux-gnu".to_string(),