Skip to content

Commit dda39ae

Browse files
committed
patch 8.0.0093
Problem: Not using multiprocess build feature. Solution: Enable multiprocess build with MSVC 10. (Ken Takata)
1 parent ca8b8d6 commit dda39ae

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed

src/Make_mvc.mak

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -297,6 +297,9 @@ CPU = ix86
297297
# Flag to turn on Win64 compatibility warnings for VC7.x and VC8.
298298
WP64CHECK = /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 =
473476
NODEFAULTLIB = /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
477488
VIM = vim
478489
!if "$(OPTIMIZE)" == "SPACE"

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -764,6 +764,8 @@ static char *(features[]) =
764764

765765
static int included_patches[] =
766766
{ /* Add new patch number below this line */
767+
/**/
768+
93,
767769
/**/
768770
92,
769771
/**/

0 commit comments

Comments
 (0)