From 2a6cf8ef87798839d80eaa2f2d1205a98d760049 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9my=20Rakic?= Date: Tue, 3 Dec 2024 15:56:41 +0000 Subject: [PATCH] update jemalloc to Sept 2024 production revision 6cc42173cbb2dad6ef5c7e49e6666987ce4cf92c --- Cargo.lock | 4 ++-- compiler/rustc/Cargo.toml | 2 +- src/tools/miri/Cargo.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index c902b639c5d72..7d40042ea0c51 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5252,8 +5252,8 @@ version = "0.1.0" [[package]] name = "tikv-jemalloc-sys" -version = "0.6.0+5.3.0-3-ge4817c8d89a2a413e835c4adeab5c5c4412f9235" -source = "git+https://github.com/lqd/jemallocator.git?rev=5f2553834644f9e6ff9f35a8e4af93bcffa758a7#5f2553834644f9e6ff9f35a8e4af93bcffa758a7" +version = "0.6.0+5.3.0-4-g6cc42173cbb2dad6ef5c7e49e6666987ce4cf92c" +source = "git+https://github.com/lqd/jemallocator.git?rev=6c33d5b33e547ad10c8561147e854d28f0bd7173#6c33d5b33e547ad10c8561147e854d28f0bd7173" dependencies = [ "cc", "libc", diff --git a/compiler/rustc/Cargo.toml b/compiler/rustc/Cargo.toml index 156cacbcc757c..672c9b1359dc5 100644 --- a/compiler/rustc/Cargo.toml +++ b/compiler/rustc/Cargo.toml @@ -22,7 +22,7 @@ stable_mir = { path = "../stable_mir" } [dependencies.tikv-jemalloc-sys] git = "https://github.com/lqd/jemallocator.git" -rev = "5f2553834644f9e6ff9f35a8e4af93bcffa758a7" +rev = "6c33d5b33e547ad10c8561147e854d28f0bd7173" optional = true features = ['unprefixed_malloc_on_supported_platforms'] diff --git a/src/tools/miri/Cargo.toml b/src/tools/miri/Cargo.toml index 46eb68b16ef91..7c5f9a6c82fc0 100644 --- a/src/tools/miri/Cargo.toml +++ b/src/tools/miri/Cargo.toml @@ -33,7 +33,7 @@ directories = "5" # easily use that since we support of-tree builds. [target.'cfg(any(target_os = "linux", target_os = "macos"))'.dependencies.tikv-jemalloc-sys] git = "https://github.com/lqd/jemallocator.git" -rev = "5f2553834644f9e6ff9f35a8e4af93bcffa758a7" +rev = "6c33d5b33e547ad10c8561147e854d28f0bd7173" features = ['unprefixed_malloc_on_supported_platforms'] [target.'cfg(unix)'.dependencies]