summaryrefslogtreecommitdiff
path: root/deps
diff options
context:
space:
mode:
authorYoongHM <yoonghm@users.noreply.github.com>2020-09-21 21:57:15 +0800
committerGitHub <noreply@github.com>2020-09-21 16:57:15 +0300
commitd3faed875d4d50dca28be814e8898b4f8674922b (patch)
treee6a9e12f00efbb004d1805d63a57dcdd53db8d09 /deps
parentc37acb82aa4b1c3317f9bc1b05fc5ab8af23ba00 (diff)
downloadredis-d3faed875d4d50dca28be814e8898b4f8674922b.tar.gz
Fix warning from jemalloc configure script (#7790)
jemalloc configure shows this: configure: WARNING: unrecognized options: --enable-cc-silence The changelog of jemalloc 4.0 has: - Replace --enable-cc-silence with --disable-cc-silence to suppress spurious warnings by default.
Diffstat (limited to 'deps')
-rw-r--r--deps/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/deps/Makefile b/deps/Makefile
index 0815d15de..b90bbd2b7 100644
--- a/deps/Makefile
+++ b/deps/Makefile
@@ -88,7 +88,7 @@ JEMALLOC_LDFLAGS= $(LDFLAGS)
jemalloc: .make-prerequisites
@printf '%b %b\n' $(MAKECOLOR)MAKE$(ENDCOLOR) $(BINCOLOR)$@$(ENDCOLOR)
- cd jemalloc && ./configure --with-version=5.1.0-0-g0 --with-lg-quantum=3 --with-jemalloc-prefix=je_ --enable-cc-silence CFLAGS="$(JEMALLOC_CFLAGS)" LDFLAGS="$(JEMALLOC_LDFLAGS)"
+ cd jemalloc && ./configure --with-version=5.1.0-0-g0 --with-lg-quantum=3 --with-jemalloc-prefix=je_ CFLAGS="$(JEMALLOC_CFLAGS)" LDFLAGS="$(JEMALLOC_LDFLAGS)"
cd jemalloc && $(MAKE) CFLAGS="$(JEMALLOC_CFLAGS)" LDFLAGS="$(JEMALLOC_LDFLAGS)" lib/libjemalloc.a
.PHONY: jemalloc