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