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 /third-party/cmake/BuildJeMalloc.cmake | |
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 'third-party/cmake/BuildJeMalloc.cmake')
-rw-r--r-- | third-party/cmake/BuildJeMalloc.cmake | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/third-party/cmake/BuildJeMalloc.cmake b/third-party/cmake/BuildJeMalloc.cmake deleted file mode 100644 index 637aadaad9..0000000000 --- a/third-party/cmake/BuildJeMalloc.cmake +++ /dev/null @@ -1,24 +0,0 @@ -if(WIN32) - message(STATUS "Building jemalloc in Windows is not supported (skipping)") - return() -endif() - -ExternalProject_Add(jemalloc - PREFIX ${DEPS_BUILD_DIR} - URL ${JEMALLOC_URL} - DOWNLOAD_DIR ${DEPS_DOWNLOAD_DIR}/jemalloc - DOWNLOAD_COMMAND ${CMAKE_COMMAND} - -DPREFIX=${DEPS_BUILD_DIR} - -DDOWNLOAD_DIR=${DEPS_DOWNLOAD_DIR}/jemalloc - -DURL=${JEMALLOC_URL} - -DEXPECTED_SHA256=${JEMALLOC_SHA256} - -DTARGET=jemalloc - -DUSE_EXISTING_SRC_DIR=${USE_EXISTING_SRC_DIR} - -P ${CMAKE_CURRENT_SOURCE_DIR}/cmake/DownloadAndExtractFile.cmake - BUILD_IN_SOURCE 1 - CONFIGURE_COMMAND ${DEPS_BUILD_DIR}/src/jemalloc/configure - CC=${DEPS_C_COMPILER} --prefix=${DEPS_INSTALL_DIR} - BUILD_COMMAND "" - INSTALL_COMMAND ${MAKE_PRG} install_include install_lib_static) - -list(APPEND THIRD_PARTY_DEPS jemalloc) |