mirror of
https://github.com/espressif/esp-idf.git
synced 2025-09-30 19:19:21 +00:00
idf_monitor: Demangle C++ names
This commit is contained in:

committed by
Angus Gratton

parent
a231ba22f3
commit
d20fbffae1
@@ -395,7 +395,7 @@ class Monitor(object):
|
||||
def lookup_pc_address(self, pc_addr):
|
||||
translation = subprocess.check_output(
|
||||
["%saddr2line" % self.toolchain_prefix,
|
||||
"-pfia", "-e", self.elf_file, pc_addr],
|
||||
"-pfiaC", "-e", self.elf_file, pc_addr],
|
||||
cwd=".")
|
||||
if not "?? ??:0" in translation:
|
||||
yellow_print(translation)
|
||||
|
Reference in New Issue
Block a user