Skip to content
This repository was archived by the owner on Aug 31, 2018. It is now read-only.

Commit 98ceef2

Browse files
seishunaddaleax
authored andcommitted
build,win: use /MP for debug builds
PR-URL: nodejs/node#16333 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Refael Ackermann <refack@gmail.com>
1 parent 306d191 commit 98ceef2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

common.gypi

+3-3
Original file line numberDiff line numberDiff line change
@@ -175,9 +175,6 @@
175175
'EnableFunctionLevelLinking': 'true',
176176
'EnableIntrinsicFunctions': 'true',
177177
'RuntimeTypeInfo': 'false',
178-
'AdditionalOptions': [
179-
'/MP', # compile across multiple CPUs
180-
],
181178
},
182179
'VCLibrarianTool': {
183180
'AdditionalOptions': [
@@ -210,6 +207,9 @@
210207
# and their sheer number drowns out other, more legitimate warnings.
211208
'DisableSpecificWarnings': ['4267'],
212209
'WarnAsError': 'false',
210+
'AdditionalOptions': [
211+
'/MP', # compile across multiple CPUs
212+
],
213213
},
214214
'VCLibrarianTool': {
215215
},

0 commit comments

Comments
 (0)