From 556c5f5a3027dbaaaf2ec47e8e70108460311e4b Mon Sep 17 00:00:00 2001 From: zjeffer <4633209+zjeffer@users.noreply.github.com> Date: Mon, 11 Aug 2025 19:54:52 +0200 Subject: [PATCH] Add tsan.supp file to easily ignore common tsan issues from external libraries --- tsan.supp | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 tsan.supp diff --git a/tsan.supp b/tsan.supp new file mode 100644 index 00000000..48a47611 --- /dev/null +++ b/tsan.supp @@ -0,0 +1,7 @@ +# Suppress common thread issues in dependencies, these are often non-fixable or not an issue. +# Use it like this (when in repo root): TSAN_OPTIONS="suppressions=./tsan.supp" ./build/waybar +race:libfontconfig.so +race:libglib-2.0.so +race:libpango-1.0.so +race:libc.so.6 +race:libgio-2.0.so