WT library

官网
github

编译

需要 boost 库支持 > 1.50

编译 boost 库1.64

Download source file from: http://www.boost.org/users/history/version_1_64_0.html
tar -xzvf boost_1_64_0.tar.gz
cd boost_1_64_0
./bootstrap.sh --prefix=/usr/local
./b2
./b2 install

编译 WT 4.0.4

cd wt-x.y.z
mkdir build; cd build
cmake ..
make
make -C examples

// To install wt in /usr/local
sudo make install
sudo ldconfig