From 4a9d37f5c39023c0c324cf2e371102978b4576a6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gerhard=20St=C3=B6bich?= <18708370+Flarna@users.noreply.github.com> Date: Thu, 5 Dec 2024 20:22:30 +0100 Subject: [PATCH] Revert "build: avoid compiling with VS v17.12" This reverts commit 542f252d3672f586db07112fe2d844a5d1417e3a. --- vcbuild.bat | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/vcbuild.bat b/vcbuild.bat index 59197c1ccc36e3..f93998d2b14901 100644 --- a/vcbuild.bat +++ b/vcbuild.bat @@ -292,19 +292,10 @@ goto exit @rem Visual Studio v17.10 has a bug that causes the build to fail. @rem Check if the version is v17.10 and exit if it is. echo %VSCMD_VER% | findstr /b /c:"17.10" >nul -if %errorlevel% neq 1 ( +if %errorlevel% neq 1 ( echo Node.js doesn't compile with Visual Studio 17.10 Please use a different version. goto exit ) -@rem Same applies to v17.12 for MSVC. -echo %VSCMD_VER% | findstr /b /c:"17.12" >nul -if %errorlevel% neq 1 ( - @rem Clang 18.1.8 Provided with VS 17.12 works fine. - if not defined clang_cl ( - echo Node.js doesn't compile with Visual Studio 17.12 Please use a different version. - goto exit - ) -) @rem check if the clang-cl build is requested if not defined clang_cl goto clang-skip