install Thrift on CentOS 6.5

更新系统
1
yum update
安装平台开发包
1
yum groupinstall "Development Tools"
更新 autoconf
1
2
3
4
5
6
7
wget http://ftp.gnu.org/gnu/autoconf/autoconf-2.69.tar.gz
tar xvf autoconf-2.69.tar.gz
cd autoconf-2.69
./configure --prefix=/usr
make
make install
cd ..
更新automake
1
2
3
4
5
6
7
wget http://ftp.gnu.org/gnu/automake/automake-1.14.tar.gz
tar xvf automake-1.14.tar.gz
cd automake-1.14
./configure --prefix=/usr
make
make install
cd ..
更新bison
1
2
3
4
5
6
7
wget http://ftp.gnu.org/gnu/bison/bison-2.5.1.tar.gz
tar xvf bison-2.5.1.tar.gz
cd bison-2.5.1
./configure --prefix=/usr
make
make install
cd ..
大专栏  install Thrift on CentOS 6.5
添加C++依赖包
1
yum install libevent-devel zlib-devel openssl-devel
安装boost
1
2
3
4
5
wget http://sourceforge.net/projects/boost/files/boost/1.53.0/boost_1_53_0.tar.gz
tar xvf boost_1_53_0.tar.gz
cd boost_1_53_0
./bootstrap.sh
./b2 install
安装Thrift
1
2
3
4
5
6
git clone https://github.com/apache/thrift.git
cd thrift
./bootstrap.sh
./configure --with-lua=no
make
make install
问题
1
2
3
4
5
6
7
8
9
10
11
# 错误提示
g++: error: /usr/local/lib/libboost_unit_test_framework.a: No such file or directory

# 解决
yum install boost-devel-static
# 执行make任出现该问题,后来发现安装位置不在 /usr/local/lib/

find / -name "libboost_unit_test_framework.a"
# 在 /usr/lib64/ 目录下
# 建立软连接
ln -s /usr/lib64/libboost_unit_test_framework.a /usr/local/lib/libboost_unit_test_framework.a

猜你喜欢

转载自www.cnblogs.com/wangziqiang123/p/11691228.html