Repository: arrow Updated Branches: refs/heads/master 03c242c7c -> 20228a2be
ARROW-909: Link jemalloc statically if build as external project Author: Uwe L. Korn <uw...@xhochy.com> Closes #651 from xhochy/ARROW-909 and squashes the following commits: a3e7a44 [Uwe L. Korn] ARROW-909: Link jemalloc statically if build as external project Project: http://git-wip-us.apache.org/repos/asf/arrow/repo Commit: http://git-wip-us.apache.org/repos/asf/arrow/commit/20228a2b Tree: http://git-wip-us.apache.org/repos/asf/arrow/tree/20228a2b Diff: http://git-wip-us.apache.org/repos/asf/arrow/diff/20228a2b Branch: refs/heads/master Commit: 20228a2becc22fbbf72b8e5e9b3c875ac835c0af Parents: 03c242c Author: Uwe L. Korn <uw...@xhochy.com> Authored: Sat May 6 17:59:18 2017 -0400 Committer: Wes McKinney <wes.mckin...@twosigma.com> Committed: Sat May 6 17:59:18 2017 -0400 ---------------------------------------------------------------------- cpp/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/arrow/blob/20228a2b/cpp/CMakeLists.txt ---------------------------------------------------------------------- diff --git a/cpp/CMakeLists.txt b/cpp/CMakeLists.txt index 5abe5f1..72e5ea9 100644 --- a/cpp/CMakeLists.txt +++ b/cpp/CMakeLists.txt @@ -692,6 +692,7 @@ if (ARROW_JEMALLOC) find_package(jemalloc) if(NOT JEMALLOC_FOUND) + set(ARROW_JEMALLOC_USE_SHARED OFF) set(JEMALLOC_PREFIX "${CMAKE_CURRENT_BINARY_DIR}/jemalloc_ep-prefix/src/jemalloc_ep/dist/") set(JEMALLOC_HOME "${JEMALLOC_PREFIX}") set(JEMALLOC_INCLUDE_DIR "${JEMALLOC_PREFIX}/include")