================
@@ -1382,6 +1382,10 @@ collectSanitizerRuntimes(const ToolChain &TC, const 
ArgList &Args,
       StaticRuntimes.push_back("asan_cxx");
   }
 
+  if (!SanArgs.needsSharedRt() && SanArgs.needsRadsanRt()) {
+    StaticRuntimes.push_back("radsan");
+  }
----------------
cjappl wrote:

One question we have here: What is the SharedRuntimes vs StaticRuntimes? Why 
would we need to support both? This is one change we "eyeballed" based on the 
other sanitizers.

https://github.com/llvm/llvm-project/pull/92460
_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to