其他分享
首页 > 其他分享> > 编译安装 gperftools

编译安装 gperftools

作者:互联网

64 位的程序通常需要链接 libuwind,但是很多时候并不想链接这个lib,因此我们需要禁用这个lib
使用 configure 的方式

./autogen.sh
/configure --prefix=$TP_INSTALL_DIR/gperftools --disable-shared --enable-static --disable-libunwind --with-pic --enable-frame-pointers

使用cmake的方式

mkdir build
cd build && cmake .. -Dgperftools_enable_libunwind=OFF -Dgperftools_enable_frame_pointers=ON

标签:enable,cmake,lib,--,frame,编译,gperftools,安装
来源: https://www.cnblogs.com/stdpain/p/14528294.html