thrift安装

#这里直接从git里安装的(或者从官网下载最新的)
git clone https://github.com/apache/thrift
./bootstrap.sh
./configure
make
make install

#如果提示libtool错误
#http://ftp.gnu.org/gnu/libtool/
wget http://ftp.gnu.org/gnu/libtool/libtool-2.4.6.tar.gz
tar zxvf
./configure
make
make install

#如果提示autoconf找不到
#http://ftp.gnu.org/gnu/autoconf/
wget http://ftp.gnu.org/gnu/autoconf/autoconf-2.69.tar.gz
tar zxvf
./configure
make
make install

#如果提示automake找不到
#http://ftp.gnu.org/gnu/automake/
wget http://ftp.gnu.org/gnu/automake/automake-1.16.tar.gz
tar zxvf
./configure
make
make install

#如果提示bison找不到或者版本过低
wget http://ftp.gnu.org/gnu/bison/bison-3.0.4.tar.gz
tar zxvf
./configure
make
make install

#如果提示line 18818: syntax error near unexpected token `QT,'
#需要安装pkg-config
#安装过程中如果提示glib版本过低,可以直接加上--with-internal-glib,使用pkg-config里自带的glib
git clone git://anongit.freedesktop.org/pkg-config
./autogen.sh  --with-internal-glib
make
make install

#如果提示src/thrift/transport/TSSLSocket.cpp:43:10: fatal error: openssl/opensslv.h: No such file or directory
#下载最新的openssl并安装
#https://www.openssl.org/source/
tar zxvf
./configure
make
make install

#在执行go get golang.org/x/net/context时(由于众所周知的原因)很容易timeout,可以后面自己直接下载放到$GOPATH里,再go install golang.org/x/net/context
mkdir -p $GOPATH/src/golang.org/x
cd $GOPATH/src/golang.org/x
git clone https://github.com/golang/net.git

你可能感兴趣的:(thrift安装)