diff options
author | MarcoFalke <falke.marco@gmail.com> | 2020-05-30 07:50:06 -0400 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2020-05-30 08:33:02 -0400 |
commit | fa10d850790bbe52d948659bb1ebbb88fe718065 (patch) | |
tree | f62a6a7895c0b95bb38bbe105db5baa530bd1b90 /ci/test/00_setup_env_native_tsan.sh | |
parent | fa0d5ee1126a8cff9f30f863eb8f5c78bf57e168 (diff) |
ci: Use libc++ instead of libstdc++ for tsan
Diffstat (limited to 'ci/test/00_setup_env_native_tsan.sh')
-rw-r--r-- | ci/test/00_setup_env_native_tsan.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ci/test/00_setup_env_native_tsan.sh b/ci/test/00_setup_env_native_tsan.sh index 63d06dea64..a5ce791114 100644 --- a/ci/test/00_setup_env_native_tsan.sh +++ b/ci/test/00_setup_env_native_tsan.sh @@ -7,8 +7,8 @@ export LC_ALL=C.UTF-8 export CONTAINER_NAME=ci_native_tsan -export DOCKER_NAME_TAG=ubuntu:18.04 -export PACKAGES="clang-9 llvm-9 python3-zmq qtbase5-dev qttools5-dev-tools libevent-dev bsdmainutils libboost-system-dev libboost-filesystem-dev libboost-test-dev libboost-thread-dev libdb5.3++-dev libminiupnpc-dev libzmq3-dev libqrencode-dev" -export NO_DEPENDS=1 +export DOCKER_NAME_TAG=ubuntu:20.04 +export PACKAGES="clang libc++abi-dev libc++-dev python3-zmq" +export DEP_OPTS="CC=clang CXX='clang++ -stdlib=libc++'" export GOAL="install" -export BITCOIN_CONFIG="--enable-zmq --disable-wallet --with-gui=qt5 CPPFLAGS='-DARENA_DEBUG -DDEBUG_LOCKORDER' --with-sanitizers=thread --disable-hardening --disable-asm CC=clang-9 CXX=clang++-9" +export BITCOIN_CONFIG="--enable-zmq --disable-wallet --with-gui=no CPPFLAGS='-DARENA_DEBUG -DDEBUG_LOCKORDER' --with-sanitizers=thread CC=clang CXX='clang++ -stdlib=libc++'" |