redis_study/build.sh

20 lines
164 B
Bash
Raw Normal View History

2020-09-05 04:01:22 +00:00
#!/usr/bin/env bash
#
# build redis script
#
2020-11-15 05:23:15 +00:00
2020-11-22 08:37:32 +00:00
cd ./deps/jemalloc && bash autogen.sh
2020-09-12 13:16:45 +00:00
2020-09-13 11:43:32 +00:00
cd ../ && make hiredis jemalloc linenoise lua
cd ../
2020-09-12 14:03:44 +00:00
2020-09-12 14:05:49 +00:00
make clean
2020-09-05 04:01:22 +00:00
2020-09-12 14:05:49 +00:00
make
2020-09-12 02:12:54 +00:00
2020-09-05 04:01:22 +00:00