mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-12-04 03:44:59 +00:00
[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:
parent
93284120f2
commit
ed8b5b37ab
@ -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:
|
||||
|
Loading…
Reference in New Issue
Block a user