You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by ko...@apache.org on 2021/05/26 06:37:05 UTC

[arrow] branch master updated: ARROW-12865: [C++][FlightRPC] Link gRPC with RE2

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

kou 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 943d2bd  ARROW-12865: [C++][FlightRPC] Link gRPC with RE2
943d2bd is described below

commit 943d2bd06a5a7c87d8a05c96bc02d2e7fc8a60b9
Author: Yibo Cai <yi...@arm.com>
AuthorDate: Wed May 26 15:35:46 2021 +0900

    ARROW-12865: [C++][FlightRPC] Link gRPC with RE2
    
    This fixes undefined symbol error if build flight with vendored re2.
    
    Closes #10403 from cyb70289/grpc-re2
    
    Authored-by: Yibo Cai <yi...@arm.com>
    Signed-off-by: Sutou Kouhei <ko...@clear-code.com>
---
 cpp/cmake_modules/ThirdpartyToolchain.cmake | 1 +
 1 file changed, 1 insertion(+)

diff --git a/cpp/cmake_modules/ThirdpartyToolchain.cmake b/cpp/cmake_modules/ThirdpartyToolchain.cmake
index 18941df..ff55936 100644
--- a/cpp/cmake_modules/ThirdpartyToolchain.cmake
+++ b/cpp/cmake_modules/ThirdpartyToolchain.cmake
@@ -2548,6 +2548,7 @@ macro(build_grpc)
       gRPC::upb
       gRPC::address_sorting
       ${ABSL_LIBRARIES}
+      re2::re2
       c-ares::cares
       ZLIB::ZLIB
       Threads::Threads)