You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This makes compiling v8_base much faster on Windows.
Sharding is disabled because the header would have to be precompiled
for each shard but is only once. The library is much smaller, so
sharding is unnecessary.
This is enabled by default, but disabled for CI and releases.
PR-URL: #21772
Reviewed-By: Rich Trott <[email protected]>
Reviewed-By: Matteo Collina <[email protected]>
Reviewed-By: Refael Ackermann <[email protected]>
Reviewed-By: Kyle Farnung <[email protected]>
Reviewed-By: Bartosz Sosnowski <[email protected]>
Copy file name to clipboardExpand all lines: deps/v8/gypfiles/v8.gyp
+14-4Lines changed: 14 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -1796,10 +1796,20 @@
1796
1796
'gyp_generators': '<!(echo $GYP_GENERATORS)',
1797
1797
},
1798
1798
'msvs_disabled_warnings': [4351, 4355, 4800],
1799
-
# When building Official, the .lib is too large and exceeds the 2G
1800
-
# limit. This breaks it into multiple pieces to avoid the limit.
1801
-
# See http://crbug.com/485155.
1802
-
'msvs_shard': 4,
1799
+
'conditions': [
1800
+
['node_use_pch!="true"', {
1801
+
# When building Official, the .lib is too large and exceeds the 2G
1802
+
# limit. This breaks it into multiple pieces to avoid the limit.
1803
+
# See http://crbug.com/485155.
0 commit comments