diff options
author | Roman Scherer <roman@burningswell.com> | 2024-01-05 14:30:47 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2024-08-31 10:44:38 +0200 |
commit | 77f46f39b5fd42cbbe598b98d012a0b33f44c7c8 (patch) | |
tree | 53ed0871e24b282426867e940064a81bfdab9449 | |
parent | d5e0180805f52ef38a03ff9d6c11dd6174e3526b (diff) | |
download | guix-77f46f39b5fd42cbbe598b98d012a0b33f44c7c8.tar.gz guix-77f46f39b5fd42cbbe598b98d012a0b33f44c7c8.zip |
gnu: jemalloc: Build with large page size.
* gnu/packages/jemalloc.scm (jemalloc): Build with large page size.
Change-Id: Ic813e7b0fe4c7ee79a1e703247abea77ad9d53f0
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
-rw-r--r-- | gnu/packages/jemalloc.scm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gnu/packages/jemalloc.scm b/gnu/packages/jemalloc.scm index 5e7facfd5e..b5fdd39921 100644 --- a/gnu/packages/jemalloc.scm +++ b/gnu/packages/jemalloc.scm @@ -62,6 +62,8 @@ ;; https://github.com/jemalloc/jemalloc/issues/937 #~'("--disable-initial-exec-tls" #$@(match (%current-system) + ("aarch64-linux" + (list "--with-lg-page=14")) ("powerpc-linux" (list "CPPFLAGS=-maltivec")) (_ |