summaryrefslogtreecommitdiff
path: root/vcbuild.bat
diff options
context:
space:
mode:
Diffstat (limited to 'vcbuild.bat')
-rw-r--r--vcbuild.bat21
1 files changed, 20 insertions, 1 deletions
diff --git a/vcbuild.bat b/vcbuild.bat
index eb7bc0d74e..527de7ee39 100644
--- a/vcbuild.bat
+++ b/vcbuild.bat
@@ -362,7 +362,26 @@ if errorlevel 1 echo Failed to sign exe&goto exit
@rem Skip license.rtf generation if not requested.
if not defined licensertf goto stage_package
-%node_exe% tools\license2rtf.js < LICENSE > %config%\license.rtf
+set "use_x64_node_exe=false"
+if "%target_arch%"=="arm64" if "%PROCESSOR_ARCHITECTURE%"=="AMD64" set "use_x64_node_exe=true"
+if "%use_x64_node_exe%"=="true" (
+ echo Cross-compilation to ARM64 detected. We'll use the x64 Node executable for license2rtf.
+ if not defined "%x64_node_exe%" set "x64_node_exe=temp-vcbuild\node-x64-cross-compiling.exe"
+ if not exist "%x64_node_exe%" (
+ echo Downloading x64 node.exe...
+ if not exist "temp-vcbuild" mkdir temp-vcbuild
+ powershell -c "Invoke-WebRequest -Uri 'https://nodejs.org/dist/latest/win-x64/node.exe' -OutFile 'temp-vcbuild\node-x64-cross-compiling.exe'"
+ )
+ if not exist "%x64_node_exe%" (
+ echo Could not find the Node executable at the given x64_node_exe path. Aborting.
+ set exit_code=1
+ goto exit
+ )
+ %x64_node_exe% tools\license2rtf.js < LICENSE > %config%\license.rtf
+) else (
+ %node_exe% tools\license2rtf.js < LICENSE > %config%\license.rtf
+)
+
if errorlevel 1 echo Failed to generate license.rtf&goto exit
:stage_package