You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by we...@apache.org on 2018/09/27 12:19:53 UTC

[arrow] 14/24: PARQUET-1029: [C++] Some extern template symbols not being exported in gcc

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

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

commit 4d21fd36f9a0772249a32f3532a0ec209a9b0030
Author: Wes McKinney <we...@twosigma.com>
AuthorDate: Wed Jun 14 10:31:14 2017 -0400

    PARQUET-1029: [C++] Some extern template symbols not being exported in gcc
    
    Extern template visibility contributes to be a mystery to me, but this fixes the regression from PARQUET-991.
    
    cc @saatvikshah1994
    
    Author: Wes McKinney <we...@twosigma.com>
    
    Closes #352 from wesm/PARQUET-1029 and squashes the following commits:
    
    3f52852 [Wes McKinney] Some extern template symbols not being exported in gcc
    
    Change-Id: Icd71f67290c25de8f9fc38153b48a70e20bfa438
---
 cpp/examples/parquet/CMakeLists.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cpp/examples/parquet/CMakeLists.txt b/cpp/examples/parquet/CMakeLists.txt
index 721fa9a..594295d 100644
--- a/cpp/examples/parquet/CMakeLists.txt
+++ b/cpp/examples/parquet/CMakeLists.txt
@@ -17,5 +17,5 @@
 
 if (PARQUET_BUILD_EXECUTABLES)
   add_executable(reader-writer reader-writer.cc)
-  target_link_libraries(reader-writer parquet_static)
+  target_link_libraries(reader-writer parquet_shared arrow)
 endif()