File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 17
17
where it is necessary to handle site-specific quirks (e.g. binaries with debug
18
18
symbols only accessible via a remote service) without having to modify the
19
19
script itself.
20
-
20
+
21
21
"""
22
22
import argparse
23
23
import bisect
@@ -92,7 +92,7 @@ def open_llvm_symbolizer(self):
92
92
'--use-symbol-table=true' ,
93
93
'--demangle=%s' % demangle ,
94
94
'--functions=linkage' ,
95
- '--inlining=true ' ,
95
+ '--inlines ' ,
96
96
'--default-arch=%s' % self .default_arch ]
97
97
if self .system == 'Darwin' :
98
98
for hint in self .dsym_hints :
Original file line number Diff line number Diff line change @@ -275,8 +275,8 @@ class LLVMSymbolizerProcess : public SymbolizerProcess {
275
275
#endif
276
276
277
277
const char *const inline_flag = common_flags ()->symbolize_inline_frames
278
- ? " --inlining=true "
279
- : " --inlining=false " ;
278
+ ? " --inlines "
279
+ : " --no-inlines " ;
280
280
int i = 0 ;
281
281
argv[i++] = path_to_binary;
282
282
argv[i++] = inline_flag;
You can’t perform that action at this time.
0 commit comments