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:
parent
193432df7d
commit
2684f876a9
@ -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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user