Re: Missing support for demangling lambdas with auto paramters in libbfd?

2016-07-05 Thread Nick Clifton
Hi Ronny, > c++filt and libbfd are unable to demangle the last two: (binutils > version 2.26 on Kubuntu 16.04) Thanks for reporting this problem. Unfortunately you have reported it to the wrong place. Name demangling is handled by the libiberty library which is part of the GCC project, not the

Missing support for demangling lambdas with auto paramters in libbfd?

2016-07-05 Thread Ronny Brendel
Hi binutils-developers and -users, #include using namespace std; int main() { auto my_lambda = [](auto i) { cout << "asdf\n" << i; }; auto my_lambda2 = [](int i) { cout << "asdf\n" << i; }; my_lambda(1); my_lambda(2.0); my_lambda2(3); return 0;