mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-17 09:47:35 +00:00
f6670c0236
* Added CoinsInfo to monero_api_cpp * Add struct on dart * Add struct on dart * Set coins value * CW-415 Use add-coin-to-monero branch * CW-415 Add get Coin and build Monero Deps using Docker * CW-415 Fix Typo * CW-415 add debug log info * CW-415 Add preferred key Images for coin control to Monero * CW-415 Fix generation * CW-415 Skip GA Cache Externals * CW-415 Skip GA Cache Externals * CW-415 Coin Control: remove Block Explorer for Monero, Add Tx hash, save note on field exit * CW-415 Coin Control: Throw Exception when all outputs are deselected * CW-415 Coin Control: Show Frozen Balance on Dashboard * CW-415 Coin Control: Show Frozen Balance on Dashboard * CW-415 Ignore cached Monero deps in Workflow * CW-415 Fix displaying frozen Balance * Use own Translator with http 1.1.0 * CW-415 Resolve requested Changes * CW-415 Resolve requested Changes * CW-415 Resolve requested Changes * CW-415 Apply requested Changes * CW-415 Apply requested Changes * CW-415 Ensure opening of UnspentCoinsInfo Box, even for Monero.com --------- Co-authored-by: Konstantin Ullrich <konstantinullrich12@gmail.com>
38 lines
1,022 B
Bash
38 lines
1,022 B
Bash
#!/bin/bash
|
|
|
|
. ./config.sh
|
|
export ICONV_FILENAME=libiconv-1.16.tar.gz
|
|
export ICONV_FILE_PATH=$WORKDIR/$ICONV_FILENAME
|
|
export ICONV_SRC_DIR=$WORKDIR/libiconv-1.16
|
|
ICONV_SHA256="e6a1b1b589654277ee790cce3734f07876ac4ccfaecbee8afa0b649cf529cc04"
|
|
|
|
curl http://ftp.gnu.org/pub/gnu/libiconv/$ICONV_FILENAME -o $ICONV_FILE_PATH
|
|
echo $ICONV_SHA256 $ICONV_FILE_PATH | sha256sum -c - || exit 1
|
|
|
|
for arch in aarch aarch64 i686 x86_64
|
|
do
|
|
|
|
PREFIX=${WORKDIR}/prefix_${arch}
|
|
PATH="${TOOLCHAIN_BASE_DIR}_${arch}/bin:${ORIGINAL_PATH}"
|
|
|
|
case $arch in
|
|
"aarch" )
|
|
CLANG=arm-linux-androideabi-clang
|
|
CXXLANG=arm-linux-androideabi-clang++
|
|
HOST="arm-linux-android";;
|
|
* )
|
|
CLANG=${arch}-linux-android-clang
|
|
CXXLANG=${arch}-linux-android-clang++
|
|
HOST="${arch}-linux-android";;
|
|
esac
|
|
|
|
cd $WORKDIR
|
|
rm -rf $ICONV_SRC_DIR
|
|
tar -xzf $ICONV_FILE_PATH -C $WORKDIR
|
|
cd $ICONV_SRC_DIR
|
|
CC=${CLANG} CXX=${CXXLANG} ./configure --build=x86_64-linux-gnu --host=${HOST} --prefix=${PREFIX} --disable-rpath
|
|
make -j$THREADS
|
|
make install
|
|
|
|
done
|
|
|