1
0
mirror of https://github.com/libuv/libuv synced 2025-03-28 21:13:16 +00:00

windows: don't set CRT debug mode on MinGW

This commit is contained in:
Hiroaki Nakamura 2012-10-09 22:57:59 +09:00 committed by Bert Belder
parent 193432df7d
commit 2684f876a9

View File

@ -24,7 +24,10 @@
#include <malloc.h>
#include <stdio.h>
#include <process.h>
#include <crtdbg.h>
#if !defined(__MINGW32__)
# include <crtdbg.h>
#endif
#include "task.h"
#include "runner.h"
@ -44,8 +47,10 @@ void platform_init(int argc, char **argv) {
/* Disable the "application crashed" popup. */
SetErrorMode(SEM_FAILCRITICALERRORS | SEM_NOGPFAULTERRORBOX |
SEM_NOOPENFILEERRORBOX);
#if !defined(__MINGW32__)
_CrtSetReportMode(_CRT_ASSERT, _CRTDBG_MODE_DEBUG);
_CrtSetReportMode(_CRT_ERROR, _CRTDBG_MODE_DEBUG);
#endif
_setmode(0, _O_BINARY);
_setmode(1, _O_BINARY);