Merge pull request #26 from krinkinmu/build-script-wip
[libcds.git] / build / sample / build-linux-ppc64.sh
1 #!/bin/sh
2 clear
3
4 export BOOST_ROOT=~/boost/boost_1_57_0
5
6 GCC_ROOT=/opt/cfarm/release/4.9.2
7 export PATH=${GCC_ROOT}/bin:${PATH}
8 export LD_LIBRARY_PATH=${GCC_ROOT}/lib:${LD_LIBRARY_PATH}
9
10 ./build.sh -b 64 -j 8 \
11 --clean \
12 -x 'g++' \
13 -z '-std=c++0x -Wall -Wextra -pedantic -m64' \
14 -l '-L${BOOST_ROOT}/stage64/lib' \
15 --with-boost ${BOOST_ROOT} \
16 2>&1 | tee build-linux-ppc64.log
17