Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joet3ch/1332524 to your computer and use it in GitHub Desktop.
Save joet3ch/1332524 to your computer and use it in GitHub Desktop.
# upgrade/install packages (your setup may vary)
yum upgrade autoconf
yum upgrade automake
yum install gcc-c++ automake libtool
yum install boost boost-devel
yum install python-devel
yum install perl-Bit-Vector perl-Class-Accessor
# Get the Thrift code
wget -O thrift.tgz "http://gitweb.thrift-rpc.org/?p=thrift.git;a=snapshot;h=HEAD;sf=tgz"
tar -xzvf thrift.tgz
cd thrift
# build Thrift
./bootstrap.sh
./configure --without-csharp
make
make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment