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.
112112| GNU/Linux | s390x | kernel >= 4.18[ ^ 1 ] , glibc >= 2.28 | Tier 2 | e.g. RHEL 8 |
113113| GNU/Linux | loong64 | kernel >= 5.19, glibc >= 2.36 | Experimental | |
114114| Windows | x64 | >= Windows 10/Server 2016 | Tier 1 | [ ^ 2 ] ,[ ^ 3 ] |
115- | Windows | x64 | Windows 8.1/Server 2012 | Experimental | |
116115| Windows | arm64 | >= Windows 10 | Tier 2 | |
117116| macOS | x64 | >= 11.0 | Tier 1 | For notes about compilation see [ ^ 4 ] |
118117| 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[]) {
3535 // Windows Server 2012 (not R2) is supported until 10/10/2023, so we allow it
3636 // to run in the experimental support tier.
3737 char buf[SKIP_CHECK_STRLEN + 1 ];
38- if (!IsWindows8Point1OrGreater () &&
39- !(IsWindowsServer () && IsWindows8OrGreater ()) &&
38+ if (!IsWindows10OrGreater () &&
4039 (GetEnvironmentVariableA (SKIP_CHECK_VAR, buf, sizeof (buf)) !=
4140 SKIP_CHECK_STRLEN ||
4241 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 "
4544 " Setting the " SKIP_CHECK_VAR " environment variable "
4645 " to 1 skips this\n check, but Node.js might not execute "
4746 " correctly. Any issues encountered on\n unsupported "
Original file line number Diff line number Diff line change 540540 'defines' : [
541541 'WIN32' ,
542542 'NOMINMAX' , # Refs: https://chromium-review.googlesource.com/c/v8/v8/+/1456620
543- '_WIN32_WINNT=0x0602 ' , # Windows 8
543+ '_WIN32_WINNT=0x0A00 ' , # Windows 10
544544 '_SILENCE_ALL_CXX20_DEPRECATION_WARNINGS' ,
545545 ],
546546 # 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