Skip to content

Commit

Permalink
chore(thirdparty): Bump gperftools to 2.13 (#1682)
Browse files Browse the repository at this point in the history
#1604

Upgrade gperftools to 2.13 which is the latest release.
  • Loading branch information
acelyc111 authored Nov 16, 2023
1 parent 97bde42 commit 3238686
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion scripts/pack_server.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion scripts/pack_tools.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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/
Expand Down
6 changes: 3 additions & 3 deletions thirdparty/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
)
Expand Down

0 comments on commit 3238686

Please sign in to comment.