mirror of
https://github.com/bitcoin/bitcoin.git
synced 2026-03-24 06:30:10 +01:00
9 lines
360 B
Bash
9 lines
360 B
Bash
CI_DESC="CI job running ThreadSanitizer"
|
|
CI_DIR=build-sanitize
|
|
NIX_ARGS=(--arg enableLibcxx true --argstr libcxxSanitizers "Thread" --argstr capnprotoSanitizers "thread")
|
|
export CXX=clang++
|
|
export CXXFLAGS="-ggdb -Werror -Wall -Wextra -Wpedantic -Wthread-safety -Wno-unused-parameter -fsanitize=thread"
|
|
CMAKE_ARGS=()
|
|
BUILD_ARGS=(-k -j4)
|
|
BUILD_TARGETS=(mptest)
|