[compiler-rt] [ubsan] Support static linking with standalone runtime (PR #80943)
Vitaly Buka via llvm-commits
llvm-commits at lists.llvm.org
Tue Feb 13 15:15:20 PST 2024
================
@@ -66,6 +66,11 @@ void InitializeDeadlySignals() {
return;
is_initialized = true;
InitializeSignalInterceptors();
+#if SANITIZER_INTERCEPT_SIGNAL_AND_SIGACTION
+ // REAL(sigaction_symname) is nullptr in a static link. Bail out.
+ if (!REAL(sigaction_symname))
----------------
vitalybuka wrote:
standalone UBSAN ubsan without asan, so it should be fine
https://github.com/llvm/llvm-project/pull/80943
More information about the llvm-commits
mailing list