modified build scripts for android

This commit is contained in:
leo 2024-08-07 12:41:51 +00:00
parent a6b6a54c08
commit 8c7d87b4dd
2 changed files with 11 additions and 10 deletions

View file

@ -6,3 +6,4 @@
./build_sodium.sh
./build_zmq.sh
./build_haven.sh
./build_zano.sh

View file

@ -6,16 +6,16 @@ set -o xtrace
ZANO_SRC_DIR=${WORKDIR}/zano
ZANO_CHECKOUT_ID=master
#git clone --recursive https://github.com/hyle-team/zano.git ${ZANO_SRC_DIR}
cd $ZANO_SRC_DIR
#git checkout ${ZANO_CHECKOUT_ID}
#git submodule init
#git submodule update
#git pull -r
#if [ $? -ne 0 ]; then
# echo "Failed to git pull -r"
# exit 1
#fi
git clone --recursive https://github.com/hyle-team/zano.git ${ZANO_SRC_DIR}
#cd $ZANO_SRC_DIR
git checkout ${ZANO_CHECKOUT_ID}
git submodule init
git submodule update
git pull -r
if [ $? -ne 0 ]; then
echo "Failed to git pull -r"
exit 1
fi
for arch in "aarch" "aarch64" "i686" "x86_64"
do