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:54 UTC

[arrow] 15/24: PARQUET-1048: Apache Arrow static transitive dependencies

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 80dc88363019b34a1e0bbffe6317533711fbfcd4
Author: Deepak Majeti <de...@hpe.com>
AuthorDate: Mon Jul 10 19:40:10 2017 +0200

    PARQUET-1048:  Apache Arrow static transitive dependencies
    
    Author: Deepak Majeti <de...@hpe.com>
    
    Closes #367 from majetideepak/PARQUET-1048 and squashes the following commits:
    
    42635f2 [Deepak Majeti] try another script
    bb96b28 [Deepak Majeti] disable boost shared
    b3a0e75 [Deepak Majeti] enable mem check
    db50b65 [Deepak Majeti] build arrow shared only if parquet shared is specified
    5fe857e [Deepak Majeti] Remove mem check
    68f8c59 [Deepak Majeti] Fix Arrow visibility warnings
    0bbd073 [Deepak Majeti] add env vars
    e4406ab [Deepak Majeti] Add static linking for travis ci
    032c8c7 [Deepak Majeti] Fix linking of benchmarks and examples
    bdb5b2f [Deepak Majeti] Add Arrow lib transitive dependencies
    
    Change-Id: I7869ce951e2087d713775787b5239921ada43da0
---
 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 594295d..721fa9a 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_shared arrow)
+  target_link_libraries(reader-writer parquet_static)
 endif()