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

Commit d4f5ba7

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 ac2906e commit d4f5ba7

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
@@ -180,9 +180,6 @@
180180
'EnableFunctionLevelLinking': 'true',
181181
'EnableIntrinsicFunctions': 'true',
182182
'RuntimeTypeInfo': 'false',
183-
'AdditionalOptions': [
184-
'/MP', # compile across multiple CPUs
185-
],
186183
},
187184
'VCLibrarianTool': {
188185
'AdditionalOptions': [
@@ -215,6 +212,9 @@
215212
# and their sheer number drowns out other, more legitimate warnings.
216213
'DisableSpecificWarnings': ['4267'],
217214
'WarnAsError': 'false',
215+
'AdditionalOptions': [
216+
'/MP', # compile across multiple CPUs
217+
],
218218
},
219219
'VCLibrarianTool': {
220220
},

0 commit comments

Comments
 (0)