File tree Expand file tree Collapse file tree 3 files changed +4
-6
lines changed Expand file tree Collapse file tree 3 files changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -112,7 +112,6 @@ platforms. This is true regardless of entries in the table below.
112
112
| GNU/Linux | s390x | kernel >= 4.18[ ^ 1 ] , glibc >= 2.28 | Tier 2 | e.g. RHEL 8 |
113
113
| GNU/Linux | loong64 | kernel >= 5.19, glibc >= 2.36 | Experimental | |
114
114
| Windows | x64 | >= Windows 10/Server 2016 | Tier 1 | [ ^ 2 ] ,[ ^ 3 ] |
115
- | Windows | x64 | Windows 8.1/Server 2012 | Experimental | |
116
115
| Windows | arm64 | >= Windows 10 | Tier 2 | |
117
116
| macOS | x64 | >= 11.0 | Tier 1 | For notes about compilation see [ ^ 4 ] |
118
117
| macOS | arm64 | >= 11.0 | Tier 1 | |
Original file line number Diff line number Diff line change @@ -35,13 +35,12 @@ int wmain(int argc, wchar_t* wargv[]) {
35
35
// Windows Server 2012 (not R2) is supported until 10/10/2023, so we allow it
36
36
// to run in the experimental support tier.
37
37
char buf[SKIP_CHECK_STRLEN + 1 ];
38
- if (!IsWindows8Point1OrGreater () &&
39
- !(IsWindowsServer () && IsWindows8OrGreater ()) &&
38
+ if (!IsWindows10OrGreater () &&
40
39
(GetEnvironmentVariableA (SKIP_CHECK_VAR, buf, sizeof (buf)) !=
41
40
SKIP_CHECK_STRLEN ||
42
41
strncmp (buf, SKIP_CHECK_VALUE, SKIP_CHECK_STRLEN) != 0 )) {
43
- fprintf (stderr, " Node.js is only supported on Windows 8.1 , Windows "
44
- " Server 2012 R2 , or higher.\n "
42
+ fprintf (stderr, " Node.js is only supported on Windows 10 , Windows "
43
+ " Server 2016 , or higher.\n "
45
44
" Setting the " SKIP_CHECK_VAR " environment variable "
46
45
" to 1 skips this\n check, but Node.js might not execute "
47
46
" correctly. Any issues encountered on\n unsupported "
Original file line number Diff line number Diff line change 540
540
'defines' : [
541
541
'WIN32' ,
542
542
'NOMINMAX' , # Refs: https://chromium-review.googlesource.com/c/v8/v8/+/1456620
543
- '_WIN32_WINNT=0x0602 ' , # Windows 8
543
+ '_WIN32_WINNT=0x0A00 ' , # Windows 10
544
544
'_SILENCE_ALL_CXX20_DEPRECATION_WARNINGS' ,
545
545
],
546
546
# 4351: VS 2005 and later are warning us that they've fixed a bug
You can’t perform that action at this time.
0 commit comments