We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 47ed02c commit 4108072Copy full SHA for 4108072
common.gypi
@@ -120,6 +120,7 @@
120
'BasicRuntimeChecks': 3, # /RTC1
121
'AdditionalOptions': [
122
'/bigobj', # prevent error C1128 in VS2015
123
+ '/MP', # compile across multiple CPUs
124
],
125
},
126
'VCLinkerTool': {
@@ -175,6 +176,9 @@
175
176
'EnableFunctionLevelLinking': 'true',
177
'EnableIntrinsicFunctions': 'true',
178
'RuntimeTypeInfo': 'false',
179
+ 'AdditionalOptions': [
180
181
+ ],
182
183
'VCLibrarianTool': {
184
@@ -207,9 +211,6 @@
207
211
# and their sheer number drowns out other, more legitimate warnings.
208
212
'DisableSpecificWarnings': ['4267'],
209
213
'WarnAsError': 'false',
210
- 'AdditionalOptions': [
- '/MP', # compile across multiple CPUs
- ],
214
215
216
0 commit comments