We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b378823 commit b60296aCopy full SHA for b60296a
.bazelrc
@@ -22,3 +22,12 @@ build:usan --linkopt="-fsanitize=undefined"
22
23
# usan clang
24
build:clang_usan --config=clang --config=usan
25
+
26
+# tsan gcc
27
+build:tsan --cxxopt="-fsanitize=thread"
28
+build:tsan --cxxopt="-fno-omit-frame-pointer"
29
+build:tsan --cxxopt="-g" --cxxopt="-O2" --strip=never
30
+build:tsan --linkopt="-fsanitize=thread"
31
32
+# tsan clang
33
+build:clang_tsan --config=clang --config=tsan
0 commit comments