summaryrefslogtreecommitdiff
path: root/src/Make_mvc.mak
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2017-02-01 13:02:47 +0100
committerBram Moolenaar <Bram@vim.org>2017-02-01 13:02:47 +0100
commit168dd00f72515750505458018767f2ae0bcdb54e (patch)
tree4b6fbe670c65ca531cc0577a2e6ffda07fcdd4e2 /src/Make_mvc.mak
parentf1ab9c137060a4d3aa1e69bcbbed02342cd746a3 (diff)
downloadvim-git-168dd00f72515750505458018767f2ae0bcdb54e.tar.gz
patch 8.0.0279: MSVC 2015 uses a different dll namev8.0.0279
Problem: With MSVC 2015 the dll name is vcruntime140.dll. Solution: Check the MSVC version and use the right dll name. (Ken Takata)
Diffstat (limited to 'src/Make_mvc.mak')
-rw-r--r--src/Make_mvc.mak4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/Make_mvc.mak b/src/Make_mvc.mak
index f1ecbe0b6..1638fd9b8 100644
--- a/src/Make_mvc.mak
+++ b/src/Make_mvc.mak
@@ -285,8 +285,10 @@ MSVCRT_VER = ($(MSVCVER) / 10 - 50)
# Base name of the msvcrXX.dll
!if $(MSVCRT_VER) <= 60
MSVCRT_NAME = msvcrt
-!else
+!elseif $(MSVCRT_VER) <= 130
MSVCRT_NAME = msvcr$(MSVCRT_VER)
+!else
+MSVCRT_NAME = vcruntime$(MSVCRT_VER)
!endif
!if $(MSVC_MAJOR) == 6