From c56c1c3e887441323d9d1a5bbcb21760c61f7638 Mon Sep 17 00:00:00 2001 From: Ryan Gonzalez Date: Sun, 30 Jun 2024 11:39:05 -0500 Subject: [PATCH] Make llvm-symbolizer errors non-fatal --- tools/alys_converter.cr | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/alys_converter.cr b/tools/alys_converter.cr index a64a7ab..515f4f5 100644 --- a/tools/alys_converter.cr +++ b/tools/alys_converter.cr @@ -113,7 +113,7 @@ class Symbolizer end if error = output.error - STDERR.puts "llvm-symbolizer returned an error: #{exe}: #{error.message}" + STDERR.puts "WARNING: llvm-symbolizer error: #{exe}: #{error.message}" return nil end -- 2.45.2