MugundanMCW commented on code in PR #48539: URL: https://github.com/apache/arrow/pull/48539#discussion_r2703316914
########## ci/scripts/python_wheel_windows_build.bat: ########## @@ -46,67 +65,119 @@ set ARROW_ORC=ON set ARROW_PARQUET=ON set PARQUET_REQUIRE_ENCRYPTION=ON set ARROW_MIMALLOC=ON -set ARROW_SUBSTRAIT=ON set ARROW_S3=ON -set ARROW_TENSORFLOW=ON -set ARROW_WITH_BROTLI=ON -set ARROW_WITH_BZ2=ON -set ARROW_WITH_LZ4=ON -set ARROW_WITH_SNAPPY=ON -set ARROW_WITH_ZLIB=ON -set ARROW_WITH_ZSTD=ON -set CMAKE_INTERPROCEDURAL_OPTIMIZATION=ON -set CMAKE_UNITY_BUILD=ON set CMAKE_GENERATOR=Visual Studio 17 2022 -set CMAKE_PLATFORM=x64 set VCPKG_ROOT=C:\vcpkg set VCPKG_FEATURE_FLAGS=-manifests -set VCPKG_TARGET_TRIPLET=amd64-windows-static-md-%CMAKE_BUILD_TYPE% + +if "%arch%"=="ARM64" ( + set ARROW_SUBSTRAIT=OFF + set ARROW_TENSORFLOW=OFF +) else ( + set ARROW_SUBSTRAIT=ON + set ARROW_TENSORFLOW=ON + set ARROW_WITH_BROTLI=ON Review Comment: Initially, these options are disabled to produce a minimal PyArrow build on Windows ARM64. The current patch enables all features except xsimd support. -- 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]
