10 Star 26 Fork 9

Gitee 极速下载/Tair

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/alibaba/tair
克隆/下载
bootstrap.sh 1.17 KB
一键复制 编辑 原始数据 按行查看 历史
浅奕 提交于 2016-04-22 16:10 . update version to 3.2.4
#!/bin/bash
prefix=`pwd`
clean_deps_tmp()
{
rm -rf $prefix/deps/tbsys-install
rm -rf $prefix/deps/libeasy-install
}
if [ "$1" == "clean" ]; then
# clean deps
clean_deps_tmp
cd $prefix/deps/tbsys/
./build.sh clean > /dev/null 2>&1
cd $prefix/deps/libeasy
./bootstrap.sh clean > /dev/null 2>&1
cd $prefix
# clean tair
make distclean &>/dev/null
rm -rf aclocal.m4 autom4te.cache config.guess config.sub configure depcomp INSTALL install-sh ltmain.sh missing config.log config.status libtool compile
rm -f *.rpm *.gz
find . -name 'Makefile' -exec rm -f {} \;
find . -name '.deps' -exec rm -rf {} \;
find . -name '.libs' -exec rm -rf {} \;
find . -name 'Makefile.in' -exec rm -f {} \;
exit;
fi
# install deps
if [ "$1" != "skip-deps" ]; then
clean_deps_tmp
cd $prefix/deps/tbsys/
./build.sh
cd $prefix/deps/libeasy
./bootstrap.sh
./configure --prefix=$prefix/deps/libeasy-install --libdir=$prefix/deps/libeasy-install/lib64 --enable-static=yes --enable-shared=no
make -j && make install
cd $prefix
fi
libtoolize --force
aclocal
autoconf
automake --add-missing --force --warnings=no-portability
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C/C++
1
https://gitee.com/mirrors/Tair.git
git@gitee.com:mirrors/Tair.git
mirrors
Tair
Tair
master

搜索帮助