We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c4d656a commit 4a1855fCopy full SHA for 4a1855f
compiler-rt/lib/lsan/lsan_common.cpp
@@ -120,7 +120,14 @@ static const char kStdSuppressions[] =
120
# endif // SANITIZER_SUPPRESS_LEAK_ON_PTHREAD_EXIT
121
# if SANITIZER_APPLE
122
// For Darwin and os_log/os_trace: https://reviews.llvm.org/D35173
123
+# if SANITIZER_ARM64
124
+ // Apple Aarch64 leaks on startup in _fetchInitializingClassList and when
125
+ // using thread locals in dyld4::RuntimeState::_instantiateTLVs.
126
+ // See https://github.com/llvm/llvm-project/issues/115992.
127
+ "leak:*_os_trace*\nleak:*_fetchInitializingClassList*\nleak:*dyld4::RuntimeState::_instantiateTLVs*\n"
128
+# else
129
"leak:*_os_trace*\n"
130
+# endif
131
# endif
132
// TLS leak in some glibc versions, described in
133
// https://sourceware.org/bugzilla/show_bug.cgi?id=12650.
0 commit comments