projects
/
libcds.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Merge pull request #33 from mgalimullin/fix_fc_empty
[libcds.git]
/
build
/
sample
/
build-linux-sparc.sh
1
#!/bin/sh
2
clear
3
4
BOOST_ROOT=~/boost/boost_1_49_0
5
export BOOST_ROOT
6
7
./build.sh -b 64 -j 2 \
8
-x 'g++' \
9
-z '-std=c++0x -Wall -pedantic' \
10
-l '-L/opt/cfarm/release/4.4.1-64/lib64 -L${BOOST_ROOT}/stage64/lib' \
11
--with-boost ${BOOST_ROOT} \
12
2>&1 | tee build-linux-sparc.log
13
14