EDIT: RESOLVED. The problem was much more benign - I had two functions that were called inside one another in one line of code - both used lexical_cast and the other one was crashing. It's interesting that I was only able to find this out by sprinkling in a lot of cout's as there was no backtrace upon crash and when debugging line be line, gdb was for whatever reason showing the wrong lexical_cast as the culprit (and I didn't see the other one, sigh). Thanks for the help!
I'm using gcc 4.1.2 and boost 1.48. I have the following code in a shared library inside a template function:
try {
boost::lexical_cast<T>(s);
}
catch (...) {
std::cout << "Caught it" << std::endl;
throw;
}
The cast fails, but the exception doesn't get caught (it does propagate and terminate the program, but this catch-clause doesn't catch it). T is long and s is a std::string equal to "234a234". (I also tried wrapping the boost includes in #pragma GCC visibility push(default) and also tried adding -shared-libgcc flag when linking, and that didn't do anything.)
It gets better though. In the following two cases the exception DOES get caught:
try {
throw boost::bad_lexical_cast();
}
catch (...) {
std::cout << "Caught it" << std::endl;
throw;
}
and amazingly this one:
try {
boost::lexical_cast<T>(s);
throw boost::bad_lexical_cast();
}
catch (...) {
std::cout << "Caught it" << std::endl;
throw;
}
Any ideas on what's going on and more importantly how to fix this?