You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kudu.apache.org by al...@apache.org on 2023/01/14 03:58:13 UTC

[kudu] branch master updated: Adds ppc64le to the exclusion list of architectures

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

alexey 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 b2ce6490e Adds ppc64le to the exclusion list of architectures
b2ce6490e is described below

commit b2ce6490e92b0a8ac4eec7c1837b72b0af0d6ca6
Author: harinreddy <hn...@us.ibm.com>
AuthorDate: Sun Sep 18 22:18:11 2022 -0500

    Adds ppc64le to the exclusion list of architectures
    
    This patch adds ppc64le architecture to the list
    that is used  to skip atomicops-internals-x86.cc
    from the build.
    
     Changes to be committed:
            modified:   src/kudu/gutil/CMakeLists.txt
    
    Change-Id: I0dbf93d1def6957caaee17b8083a2dd51d301961
    Reviewed-on: http://gerrit.cloudera.org:8080/19012
    Tested-by: Alexey Serbin <al...@apache.org>
    Reviewed-by: Alexey Serbin <al...@apache.org>
---
 src/kudu/gutil/CMakeLists.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/kudu/gutil/CMakeLists.txt b/src/kudu/gutil/CMakeLists.txt
index 460c97560..cbf4605c3 100644
--- a/src/kudu/gutil/CMakeLists.txt
+++ b/src/kudu/gutil/CMakeLists.txt
@@ -50,7 +50,7 @@ set(GUTIL_SRCS
   utf/rune.c
   walltime.cc)
 
-if (NOT "${ARCH_NAME}" MATCHES "aarch64")
+if (NOT "${ARCH_NAME}" MATCHES "aarch64" AND NOT  "${ARCH_NAME}" MATCHES "ppc64le")
 set(GUTIL_SRCS
   atomicops-internals-x86.cc
   ${GUTIL_SRCS})