Skip to content

Commit 3951c15

Browse files
seishunMylesBorins
authored andcommittedOct 23, 2017
build,win: use /MP for debug builds
PR-URL: #16333 Reviewed-By: Ben Noordhuis <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Tobias Nießen <[email protected]> Reviewed-By: Refael Ackermann <[email protected]>
1 parent ce159f4 commit 3951c15

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
@@ -171,9 +171,6 @@
171171
'EnableFunctionLevelLinking': 'true',
172172
'EnableIntrinsicFunctions': 'true',
173173
'RuntimeTypeInfo': 'false',
174-
'AdditionalOptions': [
175-
'/MP', # compile across multiple CPUs
176-
],
177174
},
178175
'VCLibrarianTool': {
179176
'AdditionalOptions': [
@@ -206,6 +203,9 @@
206203
# and their sheer number drowns out other, more legitimate warnings.
207204
'DisableSpecificWarnings': ['4267'],
208205
'WarnAsError': 'false',
206+
'AdditionalOptions': [
207+
'/MP', # compile across multiple CPUs
208+
],
209209
},
210210
'VCLibrarianTool': {
211211
},

0 commit comments

Comments
 (0)
Please sign in to comment.