mirror of
https://github.com/vim/vim.git
synced 2025-09-27 04:14:06 -04:00
patch 8.0.0093
Problem: Not using multiprocess build feature. Solution: Enable multiprocess build with MSVC 10. (Ken Takata)
This commit is contained in:
@@ -297,6 +297,9 @@ CPU = ix86
|
|||||||
# Flag to turn on Win64 compatibility warnings for VC7.x and VC8.
|
# Flag to turn on Win64 compatibility warnings for VC7.x and VC8.
|
||||||
WP64CHECK = /Wp64
|
WP64CHECK = /Wp64
|
||||||
|
|
||||||
|
# Use multiprocess build
|
||||||
|
USE_MP = yes
|
||||||
|
|
||||||
#>>>>> path of the compiler and linker; name of include and lib directories
|
#>>>>> path of the compiler and linker; name of include and lib directories
|
||||||
# PATH = c:\msvc20\bin;$(PATH)
|
# PATH = c:\msvc20\bin;$(PATH)
|
||||||
# INCLUDE = c:\msvc20\include
|
# INCLUDE = c:\msvc20\include
|
||||||
@@ -473,6 +476,14 @@ NODEFAULTLIB =
|
|||||||
NODEFAULTLIB = /nodefaultlib
|
NODEFAULTLIB = /nodefaultlib
|
||||||
!endif
|
!endif
|
||||||
|
|
||||||
|
# Use multiprocess build on MSVC 10
|
||||||
|
!if "$(USE_MP)"=="yes"
|
||||||
|
!if $(MSVC_MAJOR) >= 10
|
||||||
|
CFLAGS = $(CFLAGS) /MP
|
||||||
|
!endif
|
||||||
|
!endif
|
||||||
|
|
||||||
|
|
||||||
!ifdef NODEBUG
|
!ifdef NODEBUG
|
||||||
VIM = vim
|
VIM = vim
|
||||||
!if "$(OPTIMIZE)" == "SPACE"
|
!if "$(OPTIMIZE)" == "SPACE"
|
||||||
|
@@ -764,6 +764,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
93,
|
||||||
/**/
|
/**/
|
||||||
92,
|
92,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user