Add an option to silence OutputDebugString output#88
Add an option to silence OutputDebugString output#88jrfonseca merged 2 commits intojrfonseca:masterfrom aitap:silence_OutputDebugString
Conversation
Some applications (MSYS compilers, MiKTeX) output a lot of distracting information via OutputDebugString(). Add a flag to catchsegv to silence it.
|
Makes sense. I primarily use catchsegv to debug components which log messages through OutputDebugString, hence the current behavior, but I can see how that would only get in the way for components which log to stderr. If you could update https://github.com/jrfonseca/drmingw/blob/master/README.md#catchsegv too, it would be perfect. Thanks. |
|
Thanks for the quick reply! I've edited |
|
There are some issues with the build, unrelated to this change. (I suspect some upstream CMake change broke something.) I want to sort those out before merging this. |
|
Many thanks for merging this pull request! I was hoping to show off |
Hi! I would like to use
catchsegvto debug crashes during automatic checks of R packages on Windows.Some applications used by R during the check (MSYS compilers, MiKTeX) output a lot of distracting information via OutputDebugString(), so I added a flag to the debugger options and to
catchsegvto silence it.Please let me know if my changes need to be improved before they can be merged.