Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit fdba113

Browse files
committedJun 5, 2021
build: work around bug in MSBuild v16.10.0
This allows to build Node.js at the (temporary) cost of longer build times. Refs: #38872 Refs: https://github.com/dotnet/msbuild/releases/tag/v16.10.0 Refs: dotnet/msbuild#6465 Refs: dotnet/msbuild#6373 PR-URL: #38873 Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Antoine du Hamel <[email protected]> Reviewed-By: Gerhard Stöbich <[email protected]>
1 parent 417cb0a commit fdba113

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed
 

‎vcbuild.bat

+2
Original file line numberDiff line numberDiff line change
@@ -372,6 +372,8 @@ if "%target%"=="Build" (
372372
if defined cctest set target="Build"
373373
)
374374
if "%target%"=="node" if exist "%config%\cctest.exe" del "%config%\cctest.exe"
375+
@rem TODO(targos): Remove next line after MSBuild 16.10.1 is released.
376+
if "%target%"=="node" set target="Build"
375377
if defined msbuild_args set "extra_msbuild_args=%extra_msbuild_args% %msbuild_args%"
376378
@rem Setup env variables to use multiprocessor build
377379
set UseMultiToolTask=True

0 commit comments

Comments
 (0)
Please sign in to comment.