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++
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
: 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()");