(This is like my other question but this one is for another thing, even if it\'s related)
I\'ve got a big issue in my project. I\'ve got a library which handl
Simple. Never use ld
with C++. I changed all ld
commands in my project to g++
but seems I forgot for this library.
In short, I was using ld
for building my library but g++
for the main executable. So the exceptions worked in the executable but not in the library because ld
does not includes the C++ libraries which handle the exception system.