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