2021-08-31 09:27:30 +00:00
|
|
|
#!/bin/sh
|
2021-03-16 18:18:54 +00:00
|
|
|
|
|
|
|
ARCH=$1
|
2021-08-31 09:27:30 +00:00
|
|
|
PREFIX=$2
|
|
|
|
BOOST_SRC_DIR=$3
|
2021-03-16 18:18:54 +00:00
|
|
|
|
|
|
|
cd $BOOST_SRC_DIR
|
2021-08-31 09:27:30 +00:00
|
|
|
|
2022-03-31 11:58:30 +00:00
|
|
|
./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
|