blob: 2d99ef4a3a6b77adfcf85e7bf4d60a8d1c1fde8a [file] [log] [blame] [view]
Roger Meiere9f00cb2014-05-30 14:35:34 +02001## OS X Setup
2The following command install all the required tools and libraries to build and install the Apache Thrift compiler on a OS X based system.
3
4### Install Boost
5Download the boost library from [boost.org](http://www.boost.org) untar compile with
6
7 ./bootstrap.sh
8 sudo ./b2 threading=multi address-model=64 variant=release stage install
9
10### Install libevent
11Download [libevent](http://monkey.org/~provos/libevent), untar and compile with
12
13 ./configure --prefix=/usr/local
14 make
15 sudo make install
16
17### Building Apache Thrift
18Download the latest version of [Apache Thrift](/download), untar and compile with
19
20 ./configure --prefix=/usr/local/ --with-boost=/usr/local --with-libevent=/usr/local
21
22## Additional reading
23
24For more information on the requirements see: [Apache Thrift Requirements](/docs/install)
25
26For more information on building and installing Thrift see: [Building from source](/docs/BuildingFromSource)
27