In MSVC, how can I make any unhandled C ++ exception (like std :: runtime_error) breaks my compiled program so that it generates a dump with a full stack from the exception throw location?
I installed NTSD in the AeDebug registry and can generate good dumps for things like memory access violation, so the question here comes down to the program crashing correctly, I suppose.
Thanks in advance.
source
share