mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-16 09:17:35 +00:00
28 lines
560 B
Bash
Executable file
28 lines
560 B
Bash
Executable file
#!/bin/sh
|
|
|
|
. ./config.sh
|
|
# ./install_missing_headers.sh
|
|
# ./build_openssl.sh
|
|
# ./build_boost.sh
|
|
# ./build_sodium.sh
|
|
# ./build_zmq.sh
|
|
# ./build_unbound.sh
|
|
|
|
set -x -e
|
|
|
|
cd "$(dirname "$0")"
|
|
|
|
NPROC="-j$(sysctl -n hw.logicalcpu)"
|
|
|
|
../prepare_moneroc.sh
|
|
|
|
for COIN in monero wownero;
|
|
do
|
|
pushd ../monero_c
|
|
rm -rf external/ios/build
|
|
./build_single.sh ${COIN} host-apple-ios $NPROC
|
|
popd
|
|
done
|
|
|
|
unxz -f ../monero_c/release/monero/host-apple-ios_libwallet2_api_c.dylib.xz
|
|
unxz -f ../monero_c/release/wownero/host-apple-ios_libwallet2_api_c.dylib.xz
|