Hello All, The latest update for MS VS 2012 has bumped up the version of the compiler and Make_mvc.mak no longer recognizes it.
This simple change fixes the problem, and allows Vim to be successfully built. diff -r 202b894973a4 src/Make_mvc.mak --- a/src/Make_mvc.mak Mon May 06 12:13:33 2013 -0400 +++ b/src/Make_mvc.mak Mon May 06 12:19:54 2013 -0400 @@ -424,6 +424,9 @@ !if "$(_NMAKE_VER)" == "11.00.51106.1" MSVCVER = 11.0 !endif +!if "$(_NMAKE_VER)" == "11.00.60315.1" +MSVCVER = 11.0 +!endif !endif # Abort building VIM if version of VC is unrecognised. -- -- 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/groups/opt_out.
