File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 3636
3737 # Reset this number to 0 on major V8 upgrades.
3838 # Increment by one for each non-official patch applied to deps/v8.
39- 'v8_embedder_string' : '-node.9 ' ,
39+ 'v8_embedder_string' : '-node.10 ' ,
4040
4141 ##### V8 defaults for Node.js #####
4242
Original file line number Diff line number Diff line change @@ -764,9 +764,11 @@ CPU::CPU()
764764 // user-space.
765765 has_non_stop_time_stamp_counter_ = true ;
766766
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)
769770 constexpr int PF_ARM_V83_JSCVT_INSTRUCTIONS_AVAILABLE = 44 ;
771+ #endif
770772
771773 has_jscvt_ =
772774 IsProcessorFeaturePresent (PF_ARM_V83_JSCVT_INSTRUCTIONS_AVAILABLE);
You can’t perform that action at this time.
0 commit comments