Farid Zaripov wrote:
-----Original Message-----
From: Martin Sebor [mailto:[EMAIL PROTECTED] On Behalf Of Martin Sebor
Sent: Tuesday, July 03, 2007 7:08 AM
To: stdcxx-dev@incubator.apache.org
Subject: Re: Intel C++ build issues on Windows
There are 3 types of popup's:
1) Dr.Watson window, appear on access violation or unhandled
exception;
2) CRT asserts ;
3) Parameter validattion handler popup's.
The 1) prevented in exec utility (SetErrorMode()). The 2) and 3)
might be prevented by installing report hook and invalid parameter
handler:
http://www.mail-archive.com/stdcxx-dev@incubator.apache.org/msg03761.h
tm
l
Gotcha! I see I still owe you a response to your feedback in
that thread. The solution in 2) and 3) will only take care of
these popups in tests and not in examples or config tests (or
locales?)
Yes.
We'll also need a solution for those executables
(but we can worry about that once we're done enhancing the
test driver).
We can install the similar handlers in each example, but I don't see
any 2) of 3) popups in examples at the moment.
But that could change. I'd like to come up with a reliable mechanism
that would let us prevent these popups in both tests and examples,
just in case. Perhaps a good place for it would be the <examples.h>
header, although preferably without relying on the coupling between
the header and the example sources:
https://issues.apache.org/jira/browse/STDCXX-425
Martin