Hi, On VC2015, its CRT DLL name is vcruntime140.dll which is differ from VC2013 or earlier. This matters when compile with self-built Ruby 2.4.0. Attached patch fixes the problem.
Regards, Ken Takata -- -- You received this message from the "vim_dev" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php --- You received this message because you are subscribed to the Google Groups "vim_dev" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
# HG changeset patch # Parent 496255b3f40def79125e59ab0ff746a015455e0f diff --git a/src/Make_mvc.mak b/src/Make_mvc.mak --- 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 +!elseif $(MSVCRT_VER) <= 130 +MSVCRT_NAME = msvcr$(MSVCRT_VER) !else -MSVCRT_NAME = msvcr$(MSVCRT_VER) +MSVCRT_NAME = vcruntime$(MSVCRT_VER) !endif !if $(MSVC_MAJOR) == 6
