Cmake with gcc or clang. Here in this description we build with gcc >= 4.9 (has C++11 support).
Install packages with 'apt-get'/aptitude.
boost-all >= 1.57 snappy-dev leveldb-dev
strusBase strus strusAnalyzer strusTrace
for strusprj in strusBase strus strusAnalyzer strusTrace
do
git clone https://github.com/patrickfrey/$strusprj $strusprj
cd $strusprj
cmake -DCMAKE_BUILD_TYPE=Release -DLIB_INSTALL_DIR=lib .
make
make install
cd ..
done
for strusprj in strusBase strus strusAnalyzer strusTrace
do
git clone https://github.com/patrickfrey/$strusprj $strusprj
cd $strusprj
cmake -DCMAKE_BUILD_TYPE=Release \
-DCMAKE_C_COMPILER="clang" -DCMAKE_CXX_COMPILER="clang++" .
make
make install
cd ..
done
git clone https://github.com/patrickfrey/strusModule
cd strusModule
cmake -DCMAKE_BUILD_TYPE=Release .
cmake -DCMAKE_BUILD_TYPE=Release \
-DCMAKE_C_COMPILER="clang" -DCMAKE_CXX_COMPILER="clang++" .
make
make test
make install