From 03fd6b15700af956ffaaeda935999a37e0f2fc07 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Grzegorz=20Dzi=C4=99gielewski?= Date: Wed, 19 Jul 2023 23:52:06 +0200 Subject: [PATCH] adds forcing vaddr setting on x86_64/arm64/armv8 - workaround for https://github.com/jemalloc/jemalloc/issues/2318 --- recipes/jemalloc/all/conanfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes/jemalloc/all/conanfile.py b/recipes/jemalloc/all/conanfile.py index 4178ff4c29cc93..15d8e8cb35b159 100644 --- a/recipes/jemalloc/all/conanfile.py +++ b/recipes/jemalloc/all/conanfile.py @@ -137,7 +137,7 @@ def generate(self): "--enable-log" if self.options.enable_debug_logging else "--disable-log", "--enable-initial-exec-tls" if self.options.enable_initial_exec_tls else "--disable-initial-exec-tls", "--enable-libdl" if self.options.enable_libdl else "--disable-libdl", - "--with-lg-vaddr=48" if self.settings.arch in ['x86_64', 'arm64', 'armv8'] else '', + "--with-lg-vaddr=48" if self.settings.arch in ['x86_64', 'armv8', 'armv8.3'] else '', ]) if self.options.enable_prof: