From 7e1c4afb1d4e6bbdff772ccc5589e183490775ed Mon Sep 17 00:00:00 2001 From: Michael Goulet Date: Mon, 15 Jul 2024 13:01:20 -0400 Subject: [PATCH] The rustc crate feature is called jemalloc --- compiler/rustc/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/rustc/src/main.rs b/compiler/rustc/src/main.rs index 7ba58406ef1..29766fc9d87 100644 --- a/compiler/rustc/src/main.rs +++ b/compiler/rustc/src/main.rs @@ -34,7 +34,7 @@ fn main() { // See the comment at the top of this file for an explanation of this. - #[cfg(feature = "jemalloc-sys")] + #[cfg(feature = "jemalloc")] { use std::os::raw::{c_int, c_void};