Support for pahole C ++ 11?

I don’t know why, but my copy of pahole does not work with any binary compiled in C ++ 11, it works with C ++ 03, but not with C ++ 11: there is C ++ 11 support in pahole ?

the conclusion is similar to

 die__process_class: tag not supported (template_type_parameter)! die__process_unit: DW_TAG_unspecified_type (0x3b) @ <0x1a26> not handled! pahole: No debugging information found 
+6
source share
1 answer

This seems to be a well-known mistake.

Cm:

https://bugzilla.redhat.com/show_bug.cgi?id=962571

I tried to build from git

 git clone https://github.com/acmel/dwarves.git cd dwarves cmake .. make ./pahole <myprog> 

The git version works for me!

+4
source

Source: https://habr.com/ru/post/969490/


All Articles