blob: 0263bb5319d9ec1c33b2e134726e7ef877d0f3a0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
--- redis-4.0.2/src/Makefile.old 2017-09-21 09:12:52.000000000 -0500
+++ redis-4.0.2/src/Makefile 2018-05-26 18:45:23.494413590 -0500
@@ -109,6 +109,10 @@
# Include paths to dependencies
FINAL_CFLAGS+= -I../deps/hiredis -I../deps/linenoise -I../deps/lua/src
+ifeq ($(uname_M),ppc)
+ FINAL_LIBS+= -latomic
+endif
+
ifeq ($(MALLOC),tcmalloc)
FINAL_CFLAGS+= -DUSE_TCMALLOC
FINAL_LIBS+= -ltcmalloc
|