From 1a9654ca06110b86f62b6792d95f9f954e8239e2 Mon Sep 17 00:00:00 2001 From: Alcaro Date: Sun, 28 Apr 2019 22:04:59 +0200 Subject: [PATCH] (#18) Don't use mingw's builtin printf --- flips.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/flips.h b/flips.h index ed4387e..49fd073 100644 --- a/flips.h +++ b/flips.h @@ -47,6 +47,9 @@ //#define _WIN32_IE 0x0600 //#define __MSVCRT_VERSION__ 0x0601 #define NOMINMAX // this seems automatically on in C++ - crazy. +#include +#undef __USE_MINGW_ANSI_STDIO // must remove this, to avoid a libgcc_s_sjlj-1.dll dependency on 32bit + // comments say libstdc++ demands a POSIX printf, but I'm not using that, so I don't care #include #include #include