MugundanMCW commented on code in PR #48539: URL: https://github.com/apache/arrow/pull/48539#discussion_r2703311002
########## ci/scripts/python_wheel_windows_build.bat: ########## @@ -24,16 +24,35 @@ py -0p %PYTHON_CMD% -m sysconfig || exit /B 1 -call "C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Auxiliary\Build\vcvars64.bat" +@REM Detect architecture if not set +if "%arch%"=="" set arch=x64 + +@REM Set architecture-specific options +if "%arch%"=="ARM64" ( + set CMAKE_PLATFORM=ARM64 Review Comment: I have modified CMAKE_PLATFORM to set for both x64 and ARM64 as per the build configurations. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
