2019-10-14 18:00:49 -03:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
#
|
2022-12-24 20:49:50 -03:00
|
|
|
# Copyright (c) 2019-2022 The Bitcoin Core developers
|
2019-10-14 18:00:49 -03:00
|
|
|
# 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
|
|
|
|
|
2022-10-25 05:49:16 -03:00
|
|
|
export HOST=arm64-apple-darwin
|
|
|
|
export PIP_PACKAGES="zmq"
|
2019-10-14 18:00:49 -03:00
|
|
|
export GOAL="install"
|
2022-10-25 05:49:16 -03:00
|
|
|
export BITCOIN_CONFIG="--with-gui --with-miniupnpc --with-natpmp --enable-reduce-exports"
|
2020-11-08 07:28:24 -03:00
|
|
|
export CI_OS_NAME="macos"
|
2019-10-14 18:00:49 -03:00
|
|
|
export NO_DEPENDS=1
|
2019-10-17 12:31:20 -03:00
|
|
|
export OSX_SDK=""
|
2020-07-13 16:51:29 -04:00
|
|
|
export CCACHE_SIZE=300M
|