We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8027a7b commit 852a1a6Copy full SHA for 852a1a6
vcbuild.bat
@@ -283,6 +283,14 @@ goto exit
283
284
:msbuild-found
285
286
+@rem Visual Studio v17.10 has a bug that causes the build to fail.
287
+@rem Check if the version is v17.10 and exit if it is.
288
+echo %VSCMD_VER% | findstr /b /c:"17.10" >nul
289
+if %errorlevel% neq 1 (
290
+ echo Node.js doesn't compile with Visual Studio 17.10 Please use a different version.
291
+ goto exit
292
+)
293
+
294
@rem check if the clang-cl build is requested
295
if not defined clang_cl goto clang-skip
296
@rem x64 is hard coded as it is used for both cross and native compilation.
0 commit comments