| 1 | #!/bin/sh |
| 2 | source "$(cd "$(dirname "$0")/.." && pwd)/functions.sh" |
| 3 | |
| 4 | . ./config.sh |
| 5 | # ./install_missing_headers.sh |
| 6 | # ./build_openssl.sh |
| 7 | # ./build_boost.sh |
| 8 | # ./build_sodium.sh |
| 9 | # ./build_zmq.sh |
| 10 | # ./build_unbound.sh |
| 11 | |
| 12 | set -x -e |
| 13 | |
| 14 | cd "$(dirname "$0")" |
| 15 | |
| 16 | ../prepare_moneroc.sh |
| 17 | |
| 18 | for COIN in monero wownero zano; |
| 19 | do |
| 20 | pushd ../monero_c |
| 21 | ./build_single.sh ${COIN} aarch64-apple-ios -j$MAKE_JOB_COUNT |
| 22 | ./build_single.sh ${COIN} aarch64-apple-ios-simulator -j$MAKE_JOB_COUNT |
| 23 | popd |
| 24 | done |
| 25 | |
| 26 | ./gen_framework.sh |