Update Windows's preconfigure.bat to autodetect host arch ##build

In previous code, if a user didn't provide any argument with the command then x86 will be selected as Host by default which is kind of Flawed.

This change will detect the Host system on its and will allow the user to select the target system
This commit is contained in:
Roshanlal 2024-04-17 02:55:48 +05:30 committed by GitHub
parent d3558a31b0
commit bd40c00222
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,5 +1,7 @@
:: This is a comment
@echo off
SETLOCAL EnableDelayedExpansion
:: Preconfigure script for Windows
echo === Finding Python...
@ -46,14 +48,54 @@ if %ERRORLEVEL% == 0 (
REM vs uses HOST_TARGET syntax, so: x86_amd64 means 32bit compiler for 64bit target
REM: Hosts: x86 amd64 x64
REM: Targets: x86 amd64 x64 arm arm64
IF "%*" == "x86" (
set VSARCH=x86
) ELSE IF "%*" == "arm64" (
set VSARCH=x86_arm64
REM Detect the host architecture intuitively and easily
IF "%PROCESSOR_ARCHITECTURE%"=="AMD64" (
SET "HOST_ARCH=amd64"
) ELSE IF "%PROCESSOR_ARCHITECTURE%"=="x86" (
SET "HOST_ARCH=x86"
) ELSE (
set VSARCH=x86_amd64
SET "HOST_ARCH=unknown"
)
REM Check if arguments are passed
IF "%~1"=="" (
echo Your current Host Architecture is !HOST_ARCH!
ECHO Please select the Target Architecture:
ECHO 1. x86
ECHO 2. amd64 [x64]
ECHO 3. arm
ECHO 4. arm64
SET /P "CHOICE=Enter your choice (1-4): "
REM Set target architecture based on user input
IF "!CHOICE!"=="1" (
SET "TARGET_ARCH=x86"
) ELSE IF "!CHOICE!"=="2" (
SET "TARGET_ARCH=amd64"
) ELSE IF "!CHOICE!"=="3" (
SET "TARGET_ARCH=arm"
) ELSE IF "!CHOICE!"=="4" (
SET "TARGET_ARCH=arm64"
) ELSE (
ECHO Invalid choice. Defaulting to arm64.
SET "TARGET_ARCH=arm64"
)
REM Check if target and host are the same and set VSARCH accordingly
IF "!TARGET_ARCH!"=="!HOST_ARCH!" (
SET "VSARCH=!HOST_ARCH!"
) ELSE (
SET "VSARCH=!HOST_ARCH!_!TARGET_ARCH!"
)
) ELSE (
REM Use provided host_target argument
SET "VSARCH=%1"
)
ECHO VSARCH is set to: !VSARCH!
echo === Finding Visual Studio...
cl --help > NUL 2> NUL
if %ERRORLEVEL% == 0 (
@ -116,4 +158,5 @@ if EXIST "libr\arch\p\arm\v35\arch-armv7" (
)
echo Now you can run 'configure'
ENDLOCAL
cmd