cyb70289 commented on a change in pull request #11383:
URL: https://github.com/apache/arrow/pull/11383#discussion_r732402723
##########
File path: docs/source/developers/cpp/windows.rst
##########
@@ -286,6 +286,28 @@ file:
make || exit /B
popd
+Building on Windows/ARM64 using Ninja and Clang
+===============================================
+
+Ninja and clang can be used for building library on windows/arm64 platform.
+
+.. code-block:: batch
+
+ cd cpp
+ mkdir build
+ cd build
+
+ set CC=clang-cl
+ set CXX=clang-cl
+
+ cmake -G "Ninja" ..
+
+ cmake --build . --config Release
+
+LLVM toolchain for Windows on ARM64 can be downloaded from LLVM release page
`LLVM release page <https://releases.llvm.org>`_
Review comment:
Looks llvm arm64 windows binary is not available to download. Only i386
and x64 windows binaries are available.
Do we have to build arm64 native llvm toolchain from source code?
--
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]