aboutsummaryrefslogtreecommitdiffhomepage
path: root/projects/skia/build.sh
diff options
context:
space:
mode:
authorGravatar jonathanmetzman <31354670+jonathanmetzman@users.noreply.github.com>2021-03-02 09:20:40 -0800
committerGravatar GitHub <noreply@github.com>2021-03-02 09:20:40 -0800
commitf5901265d100cfbcb91d05cd97dab308a3d300d6 (patch)
tree962771ac9d88ff80dc43f6d07aa866fb9cea2d46 /projects/skia/build.sh
parent0e8a05d04c4b790f5b35fb037bedea49f2a5d80f (diff)
[TSAN] Support TSAN (#5266)
We aren't planning on suppoting TSAN on ClusterFuzz. But we can support in CIFuzz since Skia wants it.
Diffstat (limited to 'projects/skia/build.sh')
-rw-r--r--projects/skia/build.sh2
1 files changed, 2 insertions, 0 deletions
diff --git a/projects/skia/build.sh b/projects/skia/build.sh
index 137e9fde..219dc4eb 100644
--- a/projects/skia/build.sh
+++ b/projects/skia/build.sh
@@ -38,6 +38,8 @@ elif [ $SANITIZER == "undefined" ]; then
CMAKE_SANITIZER="SWIFTSHADER_UBSAN_DISABLED"
elif [ $SANITIZER == "coverage" ]; then
CMAKE_SANITIZER="SWIFTSHADER_EMIT_COVERAGE"
+elif [ $SANITIZER == "thread" ]; then
+ CMAKE_SANITIZER="SWIFTSHADER_UBSAN_DISABLED"
else
exit 1
fi