You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by li...@apache.org on 2022/05/13 21:30:34 UTC

[arrow] branch master updated: ARROW-16534: [Java] update Gandiva protobuf library to enable builds on M1

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 7341dbcda9 ARROW-16534: [Java] update Gandiva protobuf library to enable builds on M1
7341dbcda9 is described below

commit 7341dbcda9cb369d5538b153f7a8ba5e4ef19524
Author: Larry White <lj...@gmail.com>
AuthorDate: Fri May 13 17:29:11 2022 -0400

    ARROW-16534: [Java] update Gandiva protobuf library to enable builds on M1
    
    Currently used protobuf library 2.5.0 does not include support for M1, causing tests to fail after compiling from source on Apple Silicon. Version 3.20.1 does provide M1 support. This PR updates the library version.
    
    Closes #13121 from lwhite1/update-protobuf-dependenc
    
    Authored-by: Larry White <lj...@gmail.com>
    Signed-off-by: David Li <li...@gmail.com>
---
 java/gandiva/pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/java/gandiva/pom.xml b/java/gandiva/pom.xml
index d9e09c77ca..2d64b82b45 100644
--- a/java/gandiva/pom.xml
+++ b/java/gandiva/pom.xml
@@ -25,7 +25,7 @@
     <properties>
         <maven.compiler.source>1.8</maven.compiler.source>
         <maven.compiler.target>1.8</maven.compiler.target>
-        <protobuf.version>2.5.0</protobuf.version>
+        <protobuf.version>3.20.1</protobuf.version>
         <checkstyle.failOnViolation>true</checkstyle.failOnViolation>
         <arrow.cpp.build.dir>../../../cpp/release-build</arrow.cpp.build.dir>
     </properties>