diff options
author | James McCoy <jamessan@jamessan.com> | 2019-01-20 13:58:38 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-20 13:58:38 -0500 |
commit | 7e3300f7170afb870350c1d0e0a7f92f58b6e914 (patch) | |
tree | defa1b075883b6377d8162e26617a7e0571ba1b2 /third-party/cmake/BuildJeMalloc.cmake | |
parent | 62254d2cc0d3cbd0e8aea75657ffb82e29ccfdfd (diff) | |
parent | c2343180d74f547d99abcc3c4979a9ebb047af17 (diff) | |
download | rneovim-7e3300f7170afb870350c1d0e0a7f92f58b6e914.tar.gz rneovim-7e3300f7170afb870350c1d0e0a7f92f58b6e914.tar.bz2 rneovim-7e3300f7170afb870350c1d0e0a7f92f58b6e914.zip |
Merge pull request #9526 from jamessan/remove-jemalloc
Remove support for using jemalloc instead of the system allocator
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) |