2019-08-15 16:51:31 -04:00
#!/usr/bin/env bash
#
2023-06-08 04:28:34 -04:00
# Copyright (c) 2019-2023 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-04 21:43:10 -03:00
export CONTAINER_NAME = ci_native_tsan
2023-03-22 08:51:51 -03:00
export CI_IMAGE_NAME_TAG = ubuntu:23.04 # Version 23.04 will reach EOL in Jan 2024, and can be replaced by "ubuntu:24.04" (or anything else that ships the wanted clang version).
export PACKAGES = "clang-16 llvm-16 libclang-rt-16-dev libc++abi-16-dev libc++-16-dev python3-zmq"
export DEP_OPTS = "CC=clang-16 CXX='clang++-16 -stdlib=libc++'"
2019-08-15 16:51:31 -04:00
export GOAL = "install"
2022-12-30 05:51:51 -03:00
export BITCOIN_CONFIG = "--enable-zmq CPPFLAGS='-DARENA_DEBUG -DDEBUG_LOCKORDER -DDEBUG_LOCKCONTENTION' CXXFLAGS='-g' --with-sanitizers=thread"