We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 85389e8 commit c49539fCopy full SHA for c49539f
Makefile
@@ -5,7 +5,7 @@
5
6
USER_ID = $(shell id -u)
7
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"
+JEMALLOC_URL = "https://github.com/jemalloc/jemalloc/releases/download/5.3.0/jemalloc-5.3.0.tar.bz2"
9
10
11
.PHONY: all badger test jemalloc dependency
@@ -25,7 +25,7 @@ jemalloc:
25
echo "Downloading jemalloc..." ; \
26
curl -s -L ${JEMALLOC_URL} -o jemalloc.tar.bz2 ; \
27
tar xjf ./jemalloc.tar.bz2 ; \
28
- cd jemalloc-5.2.1 ; \
+ cd jemalloc-5.3.0 ; \
29
./configure --with-jemalloc-prefix='je_' --with-malloc-conf='background_thread:true,metadata_thp:auto'; \
30
make ; \
31
if [ "$(USER_ID)" -eq "0" ]; then \
0 commit comments