This is an automated email from the ASF dual-hosted git repository.

raulcd pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow.git


The following commit(s) were added to refs/heads/main by this push:
     new d139b7fa52 GH-46512: [CI][C++] Install the llvm package explicitly on 
MSYS2 (#46525)
d139b7fa52 is described below

commit d139b7fa52791623b25c20942c42eed1afaa3b9e
Author: Sutou Kouhei <[email protected]>
AuthorDate: Wed May 21 16:35:01 2025 +0900

    GH-46512: [CI][C++] Install the llvm package explicitly on MSYS2 (#46525)
    
    ### Rationale for this change
    
    https://github.com/msys2/MINGW-packages/pull/24287 made the llvm package as 
an optional dependency of the clang package. We need the llvm package.
    
    ### What changes are included in this PR?
    
    Install the llvm package explicitly.
    
    ### Are these changes tested?
    
    Yes.
    
    ### Are there any user-facing changes?
    
    No.
    * GitHub Issue: #46512
    
    Authored-by: Sutou Kouhei <[email protected]>
    Signed-off-by: Raúl Cumplido <[email protected]>
---
 ci/scripts/msys2_setup.sh | 1 +
 1 file changed, 1 insertion(+)

diff --git a/ci/scripts/msys2_setup.sh b/ci/scripts/msys2_setup.sh
index 27e1e1900f..28b215d25f 100755
--- a/ci/scripts/msys2_setup.sh
+++ b/ci/scripts/msys2_setup.sh
@@ -38,6 +38,7 @@ case "${target}" in
     packages+=(${MINGW_PACKAGE_PREFIX}-gtest)
     packages+=(${MINGW_PACKAGE_PREFIX}-libutf8proc)
     packages+=(${MINGW_PACKAGE_PREFIX}-libxml2)
+    packages+=(${MINGW_PACKAGE_PREFIX}-llvm)
     packages+=(${MINGW_PACKAGE_PREFIX}-lz4)
     packages+=(${MINGW_PACKAGE_PREFIX}-ninja)
     packages+=(${MINGW_PACKAGE_PREFIX}-nlohmann-json)

Reply via email to