mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-24 12:39:37 +00:00
20 lines
No EOL
276 B
Bash
Executable file
20 lines
No EOL
276 B
Bash
Executable file
#!/bin/sh
|
|
|
|
ARCH=`uname -m`
|
|
|
|
. ./config.sh
|
|
|
|
case $ARCH in
|
|
arm64)
|
|
./build_openssl_arm64.sh
|
|
./build_boost_arm64.sh;;
|
|
x86_64)
|
|
./build_openssl_x86_64.sh
|
|
./build_boost_x86_64.sh;;
|
|
esac
|
|
|
|
./build_zmq.sh
|
|
./build_expat.sh
|
|
./build_unbound.sh
|
|
./build_sodium.sh
|
|
./build_monero.sh |