mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-23 12:09:43 +00:00
e2278ae403
+ migrate to monero_c
21 lines
322 B
Bash
Executable file
21 lines
322 B
Bash
Executable file
#!/bin/bash
|
|
|
|
|
|
. ./config.sh
|
|
|
|
|
|
set -x -e
|
|
|
|
cd "$(dirname "$0")"
|
|
|
|
NPROC="-j$(nproc)"
|
|
|
|
../prepare_moneroc.sh
|
|
|
|
for COIN in monero wownero zano;
|
|
do
|
|
pushd ../monero_c
|
|
./build_single.sh ${COIN} $(gcc -dumpmachine) $NPROC
|
|
popd
|
|
unxz -f ../monero_c/release/${COIN}/$(gcc -dumpmachine)_libwallet2_api_c.so.xz
|
|
done
|