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
2020-04-19 14:56:32 +02:00
export PACKAGES = "clang-8 llvm-8 python3-zmq qtbase5-dev qttools5-dev-tools libevent-dev bsdmainutils libboost-filesystem-dev libboost-test-dev libboost-thread-dev libdb5.3++-dev libminiupnpc-dev libzmq3-dev libqrencode-dev"
2022-04-07 18:03:41 +02:00
export DEP_OPTS = "NO_UPNP=1 DEBUG=1"
2022-06-24 16:38:14 +02:00
export TEST_RUNNER_EXTRA = "--extended --exclude feature_pruning,feature_dbcrash,wallet_multiwallet.py" # Temporarily suppress ASan heap-use-after-free (see issue #14163)
2019-08-15 22:51:31 +02:00
export GOAL = "install"
2022-04-07 18:03:41 +02:00
export BITCOIN_CONFIG = "--enable-zmq --enable-reduce-exports --enable-crash-hooks --with-sanitizers=thread"
export CPPFLAGS = "-DDEBUG_LOCKORDER -DENABLE_DASH_DEBUG -DARENA_DEBUG"
export PYZMQ = true