redis_study/build.sh

21 lines
136 B
Bash
Raw Normal View History

2020-09-05 04:01:22 +00:00
#!/usr/bin/env bash
#
# build redis script
#
2020-09-12 14:03:44 +00:00
cd ./deps/jemalloc
2020-09-12 13:16:45 +00:00
2020-09-12 14:03:44 +00:00
./autogen.sh
2020-09-12 13:16:45 +00:00
2020-09-12 14:03:44 +00:00
cd ../../
2020-09-12 14:05:49 +00:00
ls -lh ./deps/jemalloc
2020-09-12 13:16:45 +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