MinGW GCC defines __int64 for Visual-Studio compatibility

This commit is contained in:
Michael Tautschnig 2017-05-03 13:20:23 +01:00
parent e2afe933e9
commit afff4a7cc2
1 changed files with 3 additions and 0 deletions

View File

@ -855,6 +855,9 @@ bool configt::set(const cmdlinet &cmdline)
#ifdef _WIN32
ansi_c.defines.push_back("__CYGWIN__");
#endif
// MinGW has extra defines
ansi_c.defines.push_back("__int64=\"long long\"");
}
else
{