I've been coding a simple GUI address book program under Windows 7 x64, using wxWidgets2.8.12 and boost::serialization with mingw4.6 and Eclipse CDT Juno.
While coding functionality to serialize entries to/from a file using a boost::archive::text_iarchive and text_oarchive, I discovered the program would cease to work upon launch. It would simply start and then immediately terminate. g++ compiled it fine, and nothing was written to stdout or stderr. Upon using gdb to investigate the issue further I found out that there was indeed an exception being thrown by the boost library.
That, in itself, is not the issue. The issue is that this exception was never displayed in any of Eclipse's consoles, so I didn't even know it existed until stepping through the entire application. The exception itself is fairly simple to resolve, but has proven very problematic due to this lack of output. Nothing is displayed when building and running the application in both Debug and Release configurations.
My question, in essence, is this: Why are these library exceptions not being outputted, and what do I need to do to ensure their proper display? I haven't yet been able to find anything useful after searching a while, and any assistance would of course be appreciated. Thank you in advance to anyone who is able to help.