mirror of https://github.com/nodejs/node.git
build: avoid compiling with VS v17.10
Refs: https://github.com/nodejs/build/issues/3739 PR-URL: https://github.com/nodejs/node/pull/53863 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Gerhard Stöbich <deb2001-github@yahoo.de>pull/54019/head
parent
8027a7be93
commit
852a1a6742
|
@ -283,6 +283,14 @@ goto exit
|
|||
|
||||
:msbuild-found
|
||||
|
||||
@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 (
|
||||
echo Node.js doesn't compile with Visual Studio 17.10 Please use a different version.
|
||||
goto exit
|
||||
)
|
||||
|
||||
@rem check if the clang-cl build is requested
|
||||
if not defined clang_cl goto clang-skip
|
||||
@rem x64 is hard coded as it is used for both cross and native compilation.
|
||||
|
|
Loading…
Reference in New Issue