[Bug binutils/29192] New: addr2line suspected incompatibility with DWARF5

2022-05-27 Thread ofekshilon at gmail dot com
Component: binutils Assignee: unassigned at sourceware dot org Reporter: ofekshilon at gmail dot com Target Milestone: --- ==Example: $ cat toy.cpp #include int main() { std::cout << "hello world"; return 0; } $ clang-14 -g -stdlib=libc++

[Bug binutils/29192] addr2line suspected incompatibility with DWARF5

2022-05-27 Thread ofekshilon at gmail dot com
https://sourceware.org/bugzilla/show_bug.cgi?id=29192 --- Comment #1 from Ofek Shilon --- (1) Sorry, typo in the example - instead of $ addr2line -fe ./toy 0x1234 should be - $ addr2line -fe ./toy14 0x1234 Also, just verified that if I build with `-fdebug-default-version=4` the error disappears

[Bug binutils/32408] New: C++filt fails to demangle some gcc-generated template mangled names

2024-12-03 Thread ofekshilon at gmail dot com
: normal Priority: P2 Component: binutils Assignee: unassigned at sourceware dot org Reporter: ofekshilon at gmail dot com Target Milestone: --- `fun` from this c++ snippet: ``` #include #include template void fun(I i) { std::puts("foo()");