[compiler-rt] [ubsan] Support static linking with standalone runtime (PR #80943)

Vitaly Buka via llvm-commits llvm-commits at lists.llvm.org
Thu Feb 8 14:45:51 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:

I thin it should be in inside of internal_sigaction
and it should fallback to "return sigaction(" like GO

https://github.com/llvm/llvm-project/pull/80943


More information about the llvm-commits mailing list