sanitizer_symbolizer_posix_libcdep.cc | 479 if (const char *found_path = FindPathToBinary("atos")) { local in function:__sanitizer::ChooseExternalSymbolizer 480 VReport(2, "Using atos found at: %s\n", found_path); 481 return new(*allocator) AtosSymbolizer(found_path, allocator); 484 if (const char *found_path = FindPathToBinary("llvm-symbolizer")) { local in function:__sanitizer::ChooseExternalSymbolizer 485 VReport(2, "Using llvm-symbolizer found at: %s\n", found_path); 486 return new(*allocator) LLVMSymbolizer(found_path, allocator); 489 if (const char *found_path = FindPathToBinary("addr2line")) { local in function:__sanitizer::ChooseExternalSymbolizer 490 VReport(2, "Using addr2line found at: %s\n", found_path); 491 return new(*allocator) Addr2LinePool(found_path, allocator);
|