cake_wallet/scripts/linux/build_monero_all.sh
cyan eab91de9f6
CW-1020 arm64 linux support ()
* arm64 linux support

* add missing dependencies to Dockerfile

* run everything in docker to not break permissions

* remove current linux dir

* proper directory name

* Clean up build script by removing .flatpak-builder directory flatpak before build process

* account for arm64 in docs [skip ci]

---------

Co-authored-by: Omar Hatem <omarh.ismail1@gmail.com>
2025-03-31 07:19:01 +02:00

28 lines
No EOL
785 B
Bash
Executable file

#!/bin/bash
source "$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)/functions.sh"
set -x -e
cd "$(dirname "$0")"
../prepare_moneroc.sh
for COIN in monero wownero;
do
pushd ../monero_c
# Determine target architecture based on system architecture
if [[ $(uname -m) == "arm64" || $(uname -m) == "aarch64" ]]; then
target="aarch64-linux-gnu"
else
target="x86_64-linux-gnu"
fi
if [[ -f "release/${COIN}/${target}_libwallet2_api_c.so" ]];
then
echo "file exist, not building monero_c for ${COIN}/$target.";
else
./build_single.sh ${COIN} $target -j$MAKE_JOB_COUNT
unxz -f ../monero_c/release/${COIN}/${target}_libwallet2_api_c.so.xz
fi
popd
done