Skip to content

Commit c49539f

Browse files
authored
Compile with jemalloc v5.3.0 (#2191)
1 parent 85389e8 commit c49539f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
USER_ID = $(shell id -u)
77
HAS_JEMALLOC = $(shell test -f /usr/local/lib/libjemalloc.a && echo "jemalloc")
8-
JEMALLOC_URL = "https://github.com/jemalloc/jemalloc/releases/download/5.2.1/jemalloc-5.2.1.tar.bz2"
8+
JEMALLOC_URL = "https://github.com/jemalloc/jemalloc/releases/download/5.3.0/jemalloc-5.3.0.tar.bz2"
99

1010

1111
.PHONY: all badger test jemalloc dependency
@@ -25,7 +25,7 @@ jemalloc:
2525
echo "Downloading jemalloc..." ; \
2626
curl -s -L ${JEMALLOC_URL} -o jemalloc.tar.bz2 ; \
2727
tar xjf ./jemalloc.tar.bz2 ; \
28-
cd jemalloc-5.2.1 ; \
28+
cd jemalloc-5.3.0 ; \
2929
./configure --with-jemalloc-prefix='je_' --with-malloc-conf='background_thread:true,metadata_thp:auto'; \
3030
make ; \
3131
if [ "$(USER_ID)" -eq "0" ]; then \

0 commit comments

Comments
 (0)