mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-17 01:37:40 +00:00
9 lines
474 B
Bash
Executable file
9 lines
474 B
Bash
Executable file
# /bin/bash
|
|
|
|
WORKDIR=/opt/android
|
|
ARCH=$1
|
|
PREFIX="${WORKDIR}/prefix_${ARCH}"
|
|
BOOST_SRC_DIR=$WORKDIR/boost_1_68_0
|
|
|
|
cd $BOOST_SRC_DIR
|
|
./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} install
|