Skip to content
This repository has been archived by the owner on Oct 15, 2020. It is now read-only.

Commit

Permalink
win,build: fix arm build
Browse files Browse the repository at this point in the history
A change merged from master 2 weeks ago broke arm build on windows with
node-chakracore. Fixed by adding msbuild ARM platform in vcbuild.bat.

PR-URL: #49
Reviewed-By: Sandeep Agarwal <Agarwal.Sandeep@microsoft.com>
  • Loading branch information
Jianchun Xu committed Apr 2, 2016
1 parent d9469f1 commit 730cd89
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions vcbuild.bat
Original file line number Diff line number Diff line change
Expand Up @@ -193,6 +193,7 @@ if defined nobuild goto sign
@rem Build the sln with msbuild.
set "msbplatform=Win32"
if "%target_arch%"=="x64" set "msbplatform=x64"
if "%target_arch%"=="arm" set "msbplatform=ARM"
msbuild node.sln /m /t:%target% /p:Configuration=%config% /p:Platform=%msbplatform% /clp:NoSummary;NoItemAndPropertyList;Verbosity=minimal /nologo
if errorlevel 1 goto exit
if "%target%" == "Clean" goto exit
Expand Down

0 comments on commit 730cd89

Please sign in to comment.