Removed old map tests
[libcds.git] / build / sample / build-sun-sparc.sh
1 #!/bin/sh
2 clear
3
4 BOOST_ROOT=~/boost
5 export BOOST_ROOT
6
7 GCC_ROOT=/usr/local/gcc433
8 PATH=${GCC_ROOT}/bin:${PATH}
9 export PATH
10 LD_LIBRARY_PATH=${GCC_ROOT}/lib:/usr/local/lib/mpfr-2.4.1/lib:/usr/local/lib/gmp-4.2.4/lib:${LD_LIBRARY_PATH}
11 export LD_LIBRARY_PATH
12
13 ./build.sh -b 64 \
14 --clean \
15 -x 'g++' \
16 -z '-std=c++0x -Wall -pedantic' \
17 -l '-L${BOOST_ROOT}/bin/sun-sparc64' \
18 --with-boost ${BOOST_ROOT} \
19 2>&1 | tee build-sun-sparc.log
20
21