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

achennaka pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/kudu.git


The following commit(s) were added to refs/heads/master by this push:
     new 2210778d3 Fix build failure in ARM machines
2210778d3 is described below

commit 2210778d3c0c695c7f4bf05aaed13317581de03e
Author: root <[email protected]>
AuthorDate: Fri Sep 19 15:38:00 2025 -0700

    Fix build failure in ARM machines
    
    This fixes build failure in ARM machines which is caused due
    to db4f8e2.
    
    Build is successful after this fix.
    
    Change-Id: Ib4bc3c5f7317531f8c5a98e397916a8d13c1ddc1
    Reviewed-on: http://gerrit.cloudera.org:8080/23446
    Reviewed-by: Alexey Serbin <[email protected]>
    Tested-by: Abhishek Chennaka <[email protected]>
---
 src/kudu/common/columnar_serialization.cc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/kudu/common/columnar_serialization.cc 
b/src/kudu/common/columnar_serialization.cc
index 3085709c3..3b7698551 100644
--- a/src/kudu/common/columnar_serialization.cc
+++ b/src/kudu/common/columnar_serialization.cc
@@ -344,7 +344,7 @@ int CopySelectedRowsAvx(
 // Define AVX2-optimized variants where possible.
 // These are disabled on GCC4 because it doesn't support per-function
 // enabling of intrinsics.
-#if __x86_64__ && (defined(__clang__) || (defined(__GNUC__) && __GNUC__ >= 5))
+#if defined(__x86_64__) && (defined(__clang__) || (defined(__GNUC__) && 
__GNUC__ >= 5))
 template<>
 __attribute__((target("avx2")))
 int CopySelectedRowsAvx<4>(

Reply via email to