2019-08-15 16:51:31 -04:00
#!/usr/bin/env bash
#
2022-12-24 23:49:50 +00:00
# Copyright (c) 2019-2022 The Bitcoin Core developers
2019-08-15 16:51:31 -04: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
2020-02-05 08:43:10 +08:00
export CONTAINER_NAME = ci_native_tsan
2022-12-29 15:39:43 +01:00
export DOCKER_NAME_TAG = debian:bookworm # For clang-15
export PACKAGES = "clang-15 llvm-15 libc++abi-15-dev libc++-15-dev python3-zmq"
export DEP_OPTS = "CC=clang-15 CXX='clang++-15 -stdlib=libc++' NO_QR=1" # qr disabled due to libqrencode 3.4.4 compile failure, https://github.com/bitcoin/bitcoin/pull/26768#issuecomment-1367403430
2019-08-15 16:51:31 -04:00
export GOAL = "install"
2022-12-29 15:39:43 +01:00
export BITCOIN_CONFIG = "--enable-zmq CPPFLAGS='-DARENA_DEBUG -DDEBUG_LOCKORDER -DDEBUG_LOCKCONTENTION' CXXFLAGS='-g' --with-sanitizers=thread"