2019-08-15 22:51:31 +02:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
#
|
|
|
|
# Copyright (c) 2019 The Bitcoin Core developers
|
|
|
|
# Distributed under the MIT software license, see the accompanying
|
|
|
|
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
export LC_ALL=C.UTF-8
|
|
|
|
|
|
|
|
export HOST=i686-pc-linux-gnu
|
2019-09-14 05:03:56 +02:00
|
|
|
export DEP_OPTS="PROTOBUF=1"
|
2019-08-15 22:51:31 +02:00
|
|
|
export PACKAGES="g++-multilib python3-zmq"
|
|
|
|
export GOAL="install"
|
2019-03-12 03:46:50 +01:00
|
|
|
export BITCOIN_CONFIG="--enable-zmq --with-gui=qt5 --enable-bip70 --enable-glibc-back-compat --enable-reduce-exports LDFLAGS=-static-libstdc++"
|
2019-08-15 22:51:31 +02:00
|
|
|
export CONFIG_SHELL="/bin/dash"
|