contrib/local.mk.example: Mention ENABLE_JEMALLOC

This doesn't prevent compilation of jemalloc, but the important thing is
that it prevents it being used in nvim.

refs 6cd20177df
refs 95707bf336
This commit is contained in:
Michael Reed 2015-10-29 16:16:47 -04:00
parent 6cd20177df
commit 8ef2bb5366

View File

@ -7,6 +7,10 @@
# These CFLAGS can be used in addition to those specified in CMakeLists.txt: # These CFLAGS can be used in addition to those specified in CMakeLists.txt:
# CMAKE_EXTRA_FLAGS="-DCMAKE_C_FLAGS=-ftrapv -Wlogical-op" # 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: # Sets the build type; defaults to Debug. Valid values:
# #
# - Debug: Disables optimizations (-O0), enables debug information. # - Debug: Disables optimizations (-O0), enables debug information.