]> granicus.if.org Git - vim/commitdiff
patch 8.0.0093 v8.0.0093
authorBram Moolenaar <Bram@vim.org>
Sat, 19 Nov 2016 16:17:12 +0000 (17:17 +0100)
committerBram Moolenaar <Bram@vim.org>
Sat, 19 Nov 2016 16:17:12 +0000 (17:17 +0100)
Problem:    Not using multiprocess build feature.
Solution:   Enable multiprocess build with MSVC 10. (Ken Takata)

src/Make_mvc.mak
src/version.c

index 435f56dd0d1581a629ef245770588296c474b262..5160aebd7b39b0786c3a02ceccf7163163479a29 100644 (file)
@@ -297,6 +297,9 @@ CPU = ix86
 # Flag to turn on Win64 compatibility warnings for VC7.x and VC8.
 WP64CHECK = /Wp64
 
+# Use multiprocess build
+USE_MP = yes
+
 #>>>>> path of the compiler and linker; name of include and lib directories
 # PATH = c:\msvc20\bin;$(PATH)
 # INCLUDE = c:\msvc20\include
@@ -473,6 +476,14 @@ NODEFAULTLIB =
 NODEFAULTLIB = /nodefaultlib
 !endif
 
+# Use multiprocess build on MSVC 10
+!if "$(USE_MP)"=="yes"
+!if $(MSVC_MAJOR) >= 10
+CFLAGS = $(CFLAGS) /MP
+!endif
+!endif
+
+
 !ifdef NODEBUG
 VIM = vim
 !if "$(OPTIMIZE)" == "SPACE"
index 5db35abc2281a95bbb59bba377eec43bc284ac00..65f12936b5273006597250d4efa933fc369bce18 100644 (file)
@@ -764,6 +764,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    93,
 /**/
     92,
 /**/