File tree Expand file tree Collapse file tree 2 files changed +13
-0
lines changed
Expand file tree Collapse file tree 2 files changed +13
-0
lines changed Original file line number Diff line number Diff line change @@ -297,6 +297,9 @@ CPU = ix86
297297# Flag to turn on Win64 compatibility warnings for VC7.x and VC8.
298298WP64CHECK = /Wp64
299299
300+ # Use multiprocess build
301+ USE_MP = yes
302+
300303# >>>>> path of the compiler and linker; name of include and lib directories
301304# PATH = c:\msvc20\bin;$(PATH)
302305# INCLUDE = c:\msvc20\include
@@ -473,6 +476,14 @@ NODEFAULTLIB =
473476NODEFAULTLIB = /nodefaultlib
474477!endif
475478
479+ # Use multiprocess build on MSVC 10
480+ !if "$(USE_MP)"=="yes"
481+ !if $(MSVC_MAJOR) >= 10
482+ CFLAGS = $(CFLAGS ) /MP
483+ !endif
484+ !endif
485+
486+
476487!ifdef NODEBUG
477488VIM = vim
478489!if "$(OPTIMIZE)" == "SPACE"
Original file line number Diff line number Diff line change @@ -764,6 +764,8 @@ static char *(features[]) =
764764
765765static int included_patches [] =
766766{ /* Add new patch number below this line */
767+ /**/
768+ 93 ,
767769/**/
768770 92 ,
769771/**/
You can’t perform that action at this time.
0 commit comments