Skip to content

Commit

Permalink
build,win: use /MP for debug builds
Browse files Browse the repository at this point in the history
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]>
  • Loading branch information
seishun authored and MylesBorins committed Nov 16, 2017
1 parent 6a4ad61 commit 824d974
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions common.gypi
Original file line number Diff line number Diff line change
@@ -167,9 +167,6 @@
'EnableFunctionLevelLinking': 'true',
'EnableIntrinsicFunctions': 'true',
'RuntimeTypeInfo': 'false',
'AdditionalOptions': [
'/MP', # compile across multiple CPUs
],
},
'VCLibrarianTool': {
'AdditionalOptions': [
@@ -202,6 +199,9 @@
# and their sheer number drowns out other, more legitimate warnings.
'DisableSpecificWarnings': ['4267'],
'WarnAsError': 'false',
'AdditionalOptions': [
'/MP', # compile across multiple CPUs
],
},
'VCLibrarianTool': {
},

0 comments on commit 824d974

Please sign in to comment.