[compiler-rt] [sanitizer_common] Implement address sanitizer on AIX: add platform specific functionality (4/n) (PR #131868)

Hubert Tong via llvm-commits llvm-commits at lists.llvm.org
Mon Mar 24 10:42:32 PDT 2025


================
@@ -445,17 +472,17 @@ static SymbolizerTool *ChooseExternalSymbolizer(LowLevelAllocator *allocator) {
   // Otherwise symbolizer program is unknown, let's search $PATH
   CHECK(path == nullptr);
 #if SANITIZER_APPLE
-  if (const char *found_path = FindPathToBinary("atos")) {
+  if (const char *found_path = FindPathToBinaryOrLibrary("atos")) {
----------------
hubert-reinterpretcast wrote:

Can avoid these changes by leaving an inline definition of `FindPathToBinary`.

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


More information about the llvm-commits mailing list