1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

compiler: display error when MinGW configuration is outdated

This commit is contained in:
vitalyster 2019-11-05 18:39:44 +03:00 committed by Alexander Medvednikov
parent b2f8944b1f
commit 67f68df8a8

View File

@ -15,7 +15,11 @@ CommonCHeaders = '
#include <ctype.h>
#include <locale.h> // tolower
#include <sys/time.h>
#include <unistd.h> // sleep
#include <unistd.h> // sleep
#else
#if defined(__MSVCRT_VERSION__) && __MSVCRT_VERSION__ < __MSVCR90_DLL
#error Please upgrade your MinGW distribution to use msvcr90.dll or later.
#endif
#endif