third-party: use the official jemalloc tarball

This avoids messages to stderr about VERSION being missing, and allows
us to skip the autogen step.
This commit is contained in:
John Szakmeister
2015-04-15 07:00:36 -04:00
parent 208013ae39
commit f0ab7c2ec1
2 changed files with 4 additions and 5 deletions

View File

@@ -10,9 +10,8 @@ ExternalProject_Add(jemalloc
-DTARGET=jemalloc
-P ${CMAKE_CURRENT_SOURCE_DIR}/cmake/DownloadAndExtractFile.cmake
BUILD_IN_SOURCE 1
CONFIGURE_COMMAND sh ${DEPS_BUILD_DIR}/src/jemalloc/autogen.sh &&
${DEPS_BUILD_DIR}/src/jemalloc/configure --enable-cc-silence
CC=${DEPS_C_COMPILER} --prefix=${DEPS_INSTALL_DIR}
CONFIGURE_COMMAND ${DEPS_BUILD_DIR}/src/jemalloc/configure --enable-cc-silence
CC=${DEPS_C_COMPILER} --prefix=${DEPS_INSTALL_DIR}
BUILD_COMMAND ""
INSTALL_COMMAND ${MAKE_PRG} install_include install_lib)