[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
This commit is contained in:
Florian Mayer 2021-11-19 18:20:43 -08:00
parent 93284120f2
commit ed8b5b37ab

View File

@ -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: