From 3238686bf4ee062f819521817fc43f39bd70a548 Mon Sep 17 00:00:00 2001 From: Yingchun Lai Date: Thu, 16 Nov 2023 15:25:27 +0800 Subject: [PATCH] chore(thirdparty): Bump gperftools to 2.13 (#1682) https://github.com/apache/incubator-pegasus/issues/1604 Upgrade gperftools to 2.13 which is the latest release. --- scripts/pack_server.sh | 2 +- scripts/pack_tools.sh | 2 +- thirdparty/CMakeLists.txt | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/scripts/pack_server.sh b/scripts/pack_server.sh index d80d6437e2..200fbbacb5 100755 --- a/scripts/pack_server.sh +++ b/scripts/pack_server.sh @@ -120,7 +120,7 @@ if [ "$use_jemalloc" == "on" ]; then copy_file ./thirdparty/output/lib/libjemalloc.so.2 ${pack}/bin copy_file ./thirdparty/output/lib/libprofiler.so.0 ${pack}/bin else - copy_file ./thirdparty/output/lib/libtcmalloc_and_profiler.so.4 ${pack}/bin + copy_file ./thirdparty/output/lib/libtcmalloc_and_profiler.so ${pack}/bin fi copy_file ./thirdparty/output/lib/libboost*.so.1.69.0 ${pack}/bin diff --git a/scripts/pack_tools.sh b/scripts/pack_tools.sh index 1be332d561..793322435b 100755 --- a/scripts/pack_tools.sh +++ b/scripts/pack_tools.sh @@ -129,7 +129,7 @@ if [ "$use_jemalloc" == "on" ]; then copy_file ./thirdparty/output/lib/libjemalloc.so.2 ${pack}/lib/ copy_file ./thirdparty/output/lib/libprofiler.so.0 ${pack}/lib/ else - copy_file ./thirdparty/output/lib/libtcmalloc_and_profiler.so.4 ${pack}/lib/ + copy_file ./thirdparty/output/lib/libtcmalloc_and_profiler.so ${pack}/lib/ fi copy_file ./thirdparty/output/lib/libboost*.so.1.69.0 ${pack}/lib/ diff --git a/thirdparty/CMakeLists.txt b/thirdparty/CMakeLists.txt index a47a357fbd..80a94828cb 100644 --- a/thirdparty/CMakeLists.txt +++ b/thirdparty/CMakeLists.txt @@ -97,9 +97,9 @@ ExternalProject_Get_property(googletest SOURCE_DIR) set(googletest_SRC ${SOURCE_DIR}) ExternalProject_Add(gperftools - URL ${OSS_URL_PREFIX}/gperftools-2.7.tar.gz - https://github.com/gperftools/gperftools/releases/download/gperftools-2.7/gperftools-2.7.tar.gz - URL_MD5 c6a852a817e9160c79bdb2d3101b4601 + URL ${OSS_URL_PREFIX}/gperftools-2.13.tar.gz + https://github.com/gperftools/gperftools/releases/download/gperftools-2.13/gperftools-2.13.tar.gz + URL_MD5 4e218a40a354748c50d054c285caaae8 CONFIGURE_COMMAND ./configure --prefix=${TP_OUTPUT} --enable-static=no --enable-frame-pointers=yes BUILD_IN_SOURCE 1 )