From ed8b5b37abb12bd8e7bf7b3f8ec28187ad79a927 Mon Sep 17 00:00:00 2001 From: Florian Mayer Date: Fri, 19 Nov 2021 18:20:43 -0800 Subject: [PATCH] [hwasan] fix arguments to symbolizer. new versions do not accept -inlining of -functions (tested with 11 and 13). Reviewed By: hctim Differential Revision: https://reviews.llvm.org/D114303 --- compiler-rt/lib/hwasan/scripts/hwasan_symbolize | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler-rt/lib/hwasan/scripts/hwasan_symbolize b/compiler-rt/lib/hwasan/scripts/hwasan_symbolize index f67dbe4aa9ea..f4c946ed87dc 100755 --- a/compiler-rt/lib/hwasan/scripts/hwasan_symbolize +++ b/compiler-rt/lib/hwasan/scripts/hwasan_symbolize @@ -35,7 +35,7 @@ class Symbolizer: def __open_pipe(self): if not self.__pipe: - self.__pipe = subprocess.Popen([self.__path, "-inlining", "-functions"], + self.__pipe = subprocess.Popen([self.__path, "--inlining", "--functions"], stdin=subprocess.PIPE, stdout=subprocess.PIPE) class __EOF: