[compiler-rt] Add cmake option to enable/disable searching PATH for symbolizer (PR #129012)

Hubert Tong via llvm-commits llvm-commits at lists.llvm.org
Thu Feb 27 16:08:03 PST 2025


================
@@ -443,23 +443,28 @@ static SymbolizerTool *ChooseExternalSymbolizer(LowLevelAllocator *allocator) {
   }
 
   // Otherwise symbolizer program is unknown, let's search $PATH
+#ifdef SANITIZER_DISABLE_SYMBOLIZER_PATH_SEARCH
+   VReport(2, "Symbolizer path search is disabled in the runtime build configuration\n");
+   return nullptr;
+#else 
   CHECK(path == nullptr);
-#if SANITIZER_APPLE
-  if (const char *found_path = FindPathToBinary("atos")) {
-    VReport(2, "Using atos found at: %s\n", found_path);
-    return new(*allocator) AtosSymbolizer(found_path, allocator);
-  }
-#endif  // SANITIZER_APPLE
-  if (const char *found_path = FindPathToBinary("llvm-symbolizer")) {
-    VReport(2, "Using llvm-symbolizer found at: %s\n", found_path);
-    return new(*allocator) LLVMSymbolizer(found_path, allocator);
-  }
-  if (common_flags()->allow_addr2line) {
-    if (const char *found_path = FindPathToBinary("addr2line")) {
-      VReport(2, "Using addr2line found at: %s\n", found_path);
-      return new(*allocator) Addr2LinePool(found_path, allocator);
+  #if SANITIZER_APPLE
+    if (const char *found_path = FindPathToBinary("atos")) {
+      VReport(2, "Using atos found at: %s\n", found_path);
+      return new(*allocator) AtosSymbolizer(found_path, allocator);
     }
-  }
+  #endif  // SANITIZER_APPLE
+    if (const char *found_path = FindPathToBinary("llvm-symbolizer")) {
+      VReport(2, "Using llvm-symbolizer found at: %s\n", found_path);
+      return new(*allocator) LLVMSymbolizer(found_path, allocator);
+    }
+    if (common_flags()->allow_addr2line) {
+      if (const char *found_path = FindPathToBinary("addr2line")) {
+        VReport(2, "Using addr2line found at: %s\n", found_path);
+        return new(*allocator) Addr2LinePool(found_path, allocator);
+      }
+    }
+#endif // SANITIZER_DISABLE_SYMBOLIZER_PATH_SEARCH
   return nullptr;
----------------
hubert-reinterpretcast wrote:

Do not increase indentation for preprocessor conditionals (`#if`, etc.). There should be no whitespace changes compared to the prior version here.

Include the final `return nullptr;` in the `#else` block.


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


More information about the llvm-commits mailing list