aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2015-10-29 21:10:07 -0400
committerJustin M. Keyes <justinkz@gmail.com>2015-10-29 21:10:07 -0400
commit4abf108f4639af1c35bc0554a069d878a50fcea0 (patch)
tree85e838befd41afa8354269a57d210f5ca585ba20
parent6cd20177df9d675c4c8de9ae27ce8c0ea2a94cca (diff)
parent8ef2bb53661e24d78506185ccfa167f1b742b9be (diff)
downloadrneovim-4abf108f4639af1c35bc0554a069d878a50fcea0.tar.gz
rneovim-4abf108f4639af1c35bc0554a069d878a50fcea0.tar.bz2
rneovim-4abf108f4639af1c35bc0554a069d878a50fcea0.zip
Merge pull request #3556 from Pyrohh/local-mk-update
contrib/local.mk.example: Mention ENABLE_JEMALLOC
-rw-r--r--contrib/local.mk.example4
1 files changed, 4 insertions, 0 deletions
diff --git a/contrib/local.mk.example b/contrib/local.mk.example
index 1c3ea4ab40..4e7b01a39f 100644
--- a/contrib/local.mk.example
+++ b/contrib/local.mk.example
@@ -7,6 +7,10 @@
# These CFLAGS can be used in addition to those specified in CMakeLists.txt:
# CMAKE_EXTRA_FLAGS="-DCMAKE_C_FLAGS=-ftrapv -Wlogical-op"
+# By default, the jemalloc family of memory allocation functions are used.
+# Uncomment the following to instead use libc memory allocation functions.
+# CMAKE_EXTRA_FLAGS += -DENABLE_JEMALLOC=OFF
+
# Sets the build type; defaults to Debug. Valid values:
#
# - Debug: Disables optimizations (-O0), enables debug information.