We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f1ab9c1 commit 168dd00Copy full SHA for 168dd00
src/Make_mvc.mak
@@ -285,8 +285,10 @@ MSVCRT_VER = ($(MSVCVER) / 10 - 50)
285
# Base name of the msvcrXX.dll
286
!if $(MSVCRT_VER) <= 60
287
MSVCRT_NAME = msvcrt
288
-!else
+!elseif $(MSVCRT_VER) <= 130
289
MSVCRT_NAME = msvcr$(MSVCRT_VER)
290
+!else
291
+MSVCRT_NAME = vcruntime$(MSVCRT_VER)
292
!endif
293
294
!if $(MSVC_MAJOR) == 6
src/version.c
@@ -764,6 +764,8 @@ static char *(features[]) =
764
765
static int included_patches[] =
766
{ /* Add new patch number below this line */
767
+/**/
768
+ 279,
769
/**/
770
278,
771
0 commit comments