From 78d6a20284420c9d0cf646a55ff81b97d8f4a562 Mon Sep 17 00:00:00 2001 From: adfoster-r7 Date: Tue, 4 Jun 2024 13:05:49 +0100 Subject: [PATCH] Remove jemalloc for linux arm compilation --- config/software/ruby.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/software/ruby.rb b/config/software/ruby.rb index 1b50af6..96474a9 100644 --- a/config/software/ruby.rb +++ b/config/software/ruby.rb @@ -86,7 +86,7 @@ env = with_standard_compiler_flags(with_embedded_path) # do not remove - Rapid7 custom - do not remove: -jemalloc_required = linux? || mac_os_x? +jemalloc_required = (linux? && !arm?) || mac_os_x? if jemalloc_required dependency "jemalloc" end