aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThiago de Arruda <tpadilha84@gmail.com>2015-10-29 14:51:56 -0300
committerThiago de Arruda <tpadilha84@gmail.com>2015-10-29 14:51:56 -0300
commit6cd20177df9d675c4c8de9ae27ce8c0ea2a94cca (patch)
tree7aed2c240bf5a5d988af7de4fca751f7d0886b62
parent58962d89c8db631c04c35f84ca19eaf2c82b0059 (diff)
downloadrneovim-6cd20177df9d675c4c8de9ae27ce8c0ea2a94cca.tar.gz
rneovim-6cd20177df9d675c4c8de9ae27ce8c0ea2a94cca.tar.bz2
rneovim-6cd20177df9d675c4c8de9ae27ce8c0ea2a94cca.zip
build: Set the default value of ENABLE_JEMALLOC to ON
Restoring the default which was changed by #3515.
-rw-r--r--CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 53e387307c..3db32f1966 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -260,7 +260,7 @@ if((CLANG_ASAN_UBSAN OR CLANG_MSAN OR CLANG_TSAN) AND NOT CMAKE_C_COMPILER_ID MA
message(FATAL_ERROR "Sanitizers are only supported for Clang.")
endif()
-option(ENABLE_JEMALLOC "enable jemalloc" OFF)
+option(ENABLE_JEMALLOC "enable jemalloc" ON)
if (ENABLE_JEMALLOC)
if(CLANG_ASAN_UBSAN OR CLANG_MSAN OR CLANG_TSAN)