When building redit from source on my Raspberry Pi, I get the following error:
gcc: error: ../deps/jemalloc/lib/libjemalloc.a: No such file or directory
Makefile:171: recipe for target 'redis-server' failed
make[1]: *** [redis-server] Error 1
make[1]: Leaving directory '/tmp/redis-3.0.1/src'
Makefile:6: recipe for target 'all' failed
make: *** [all] Error 2
As mentioned in #722, running cd deps && make hiredis lua jemalloc linenoise before the main build was enough to build successfully.
Maybe some changes are needed to the Makefile?
Comment From: badboy
The usual way is:
make distclean
make
Maybe you had an unsuccessful) build before and some files where still missing. That is known but there's currently no effort to change this when the workaround is so simple.
Comment From: PLNech
Noted. Thank you for your answer !
Comment From: enjoy-binbin
looks like it's resolved, i am closing it