diff options
author | James McCoy <jamessan@jamessan.com> | 2019-01-19 18:09:52 -0500 |
---|---|---|
committer | James McCoy <jamessan@jamessan.com> | 2019-01-19 18:09:52 -0500 |
commit | c2343180d74f547d99abcc3c4979a9ebb047af17 (patch) | |
tree | 53ce67c282fd0bb693905cf2e2a8c869b9999a4d /contrib | |
parent | f2cc9e8826a72f4434a838d7d31239e5fe9d0a37 (diff) | |
download | rneovim-c2343180d74f547d99abcc3c4979a9ebb047af17.tar.gz rneovim-c2343180d74f547d99abcc3c4979a9ebb047af17.tar.bz2 rneovim-c2343180d74f547d99abcc3c4979a9ebb047af17.zip |
Remove support for using jemalloc instead of the system allocator
There was never any investigation done to determine whether using
jemalloc was actually a net benefit for nvim. It has been a portability
limitation and adds another factor to consider when triaging issues.
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/local.mk.example | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/contrib/local.mk.example b/contrib/local.mk.example index c347eb9e0d..52a5505399 100644 --- a/contrib/local.mk.example +++ b/contrib/local.mk.example @@ -7,10 +7,6 @@ # 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. @@ -36,7 +32,6 @@ # them. # # DEPS_CMAKE_FLAGS += -DUSE_BUNDLED_BUSTED=OFF -# DEPS_CMAKE_FLAGS += -DUSE_BUNDLED_JEMALLOC=OFF # DEPS_CMAKE_FLAGS += -DUSE_BUNDLED_LIBTERMKEY=OFF # DEPS_CMAKE_FLAGS += -DUSE_BUNDLED_LIBUV=OFF # DEPS_CMAKE_FLAGS += -DUSE_BUNDLED_LIBVTERM=OFF |