You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@bigtop.apache.org by iw...@apache.org on 2022/08/12 04:53:04 UTC

[bigtop] branch master updated: BIGTOP-3775: Failed to build Phoenix on Arm64/powerpc64le (#980)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 5c56708a BIGTOP-3775: Failed to build Phoenix on Arm64/powerpc64le (#980)
5c56708a is described below

commit 5c56708a4f8c71bd915c318c7b998d53d88a2189
Author: Yuqi Gu <yu...@arm.com>
AuthorDate: Fri Aug 12 12:53:00 2022 +0800

    BIGTOP-3775: Failed to build Phoenix on Arm64/powerpc64le (#980)
    
    Change-Id: Ibe38c50e6cbf83d1e89f3b35c8c4ee500d49d329
    Signed-off-by: Yuqi Gu <yu...@arm.com>
---
 bigtop-packages/src/common/phoenix/do-component-build | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/bigtop-packages/src/common/phoenix/do-component-build b/bigtop-packages/src/common/phoenix/do-component-build
index a07b385d..574c4197 100644
--- a/bigtop-packages/src/common/phoenix/do-component-build
+++ b/bigtop-packages/src/common/phoenix/do-component-build
@@ -25,11 +25,11 @@ MVN_ARGS+="-Dhbase.profile=${HBASE_VERSION%.*} "
 # create com.google.protobuf:protoc artifact with local protoc built by toolchain
 if [ $HOSTTYPE = "powerpc64le" ] ; then
   mvn install:install-file -DgroupId=com.google.protobuf -DartifactId=protoc -Dversion=2.5.0 \
-            -Dclassifier=linux-ppcle_64 -Dpackaging=exe -Dfile=/usr/local/bin/protoc
+            -Dclassifier=linux-ppcle_64 -Dpackaging=exe -Dfile=/usr/local/protobuf-2.5.0/bin/protoc
   MVN_ARGS+="-Dprotobuf.group=com.google.protobuf -Dprotoc.version=2.5.0 "
 elif [ $HOSTTYPE = "aarch64" ] ; then
   mvn install:install-file -DgroupId=com.google.protobuf -DartifactId=protoc -Dversion=2.5.0 \
-            -Dclassifier=linux-aarch_64 -Dpackaging=exe -Dfile=/usr/local/bin/protoc
+            -Dclassifier=linux-aarch_64 -Dpackaging=exe -Dfile=/usr/local/protobuf-2.5.0/bin/protoc
   MVN_ARGS+="-Dprotobuf.group=com.google.protobuf -Dprotoc.version=2.5.0 "
 fi