From 7a39693ad98263d26dd3387756bceb59d652a110 Mon Sep 17 00:00:00 2001 From: Marko Budiselic Date: Fri, 23 Feb 2018 14:46:36 +0100 Subject: [PATCH] Disable ltalloc by default Summary: It seems that boost serialize doesn't work well with ltalloc. Reviewers: mferencevic, dgleich, teon.banek Reviewed By: mferencevic, dgleich Subscribers: pullbot Differential Revision: https://phabricator.memgraph.io/D1233 --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index a8e2c91c5..87413181f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -115,8 +115,8 @@ message(STATUS "CMake build type: ${CMAKE_BUILD_TYPE}") find_package(Threads REQUIRED) # optional Ltalloc -option(USE_LTALLOC "Use Ltalloc instead of default allocator (default ON). \ -Set this to OFF to prevent linking with Ltalloc." ON) +option(USE_LTALLOC "Use Ltalloc instead of default allocator (default OFF). \ +Set this to ON to link with Ltalloc." OFF) # optional readline option(USE_READLINE "Use GNU Readline library if available (default ON). \