| 1 | #!/bin/sh |
| 2 | |
| 3 | ARCH=$1 |
| 4 | PREFIX=$2 |
| 5 | BOOST_SRC_DIR=$3 |
| 6 | |
| 7 | cd $BOOST_SRC_DIR |
| 8 | echo "Building boost" |
| 9 | ./b2 --build-type=minimal link=static runtime-link=static --with-chrono --with-date_time --with-timer --with-filesystem --with-program_options --with-regex --with-serialization --with-system --with-thread --with-locale --with-log --build-dir=android --stagedir=android toolset=clang threading=multi threadapi=pthread target-os=android -sICONV_PATH=${PREFIX} -j$THREADS install |