#这里直接从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安装
最后编辑于 :
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...