File tree 2 files changed +5
-3
lines changed
2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 36
36
37
37
# Reset this number to 0 on major V8 upgrades.
38
38
# Increment by one for each non-official patch applied to deps/v8.
39
- 'v8_embedder_string' : '-node.9 ' ,
39
+ 'v8_embedder_string' : '-node.10 ' ,
40
40
41
41
##### V8 defaults for Node.js #####
42
42
Original file line number Diff line number Diff line change @@ -764,9 +764,11 @@ CPU::CPU()
764
764
// user-space.
765
765
has_non_stop_time_stamp_counter_ = true ;
766
766
767
- // Defined in winnt.h, but in a newer version of the Windows SDK than the one
768
- // that V8 requires, so we must copy the value here.
767
+ // Defined in winnt.h, but only in 10.0.20348.0 version of the Windows SDK.
768
+ // Copy the value here to support older versions as well.
769
+ #if !defined(PF_ARM_V83_JSCVT_INSTRUCTIONS_AVAILABLE)
769
770
constexpr int PF_ARM_V83_JSCVT_INSTRUCTIONS_AVAILABLE = 44 ;
771
+ #endif
770
772
771
773
has_jscvt_ =
772
774
IsProcessorFeaturePresent (PF_ARM_V83_JSCVT_INSTRUCTIONS_AVAILABLE);
You can’t perform that action at this time.
0 commit comments