C++ 库名称中的“f”后缀是啥意思,如何加载它?
Posted
技术标签:
【中文标题】C++ 库名称中的“f”后缀是啥意思,如何加载它?【英文标题】:What does 'f' suffix mean on a C++ library name and how do I load it?C++ 库名称中的“f”后缀是什么意思,如何加载它? 【发布时间】:2014-12-04 16:24:16 【问题描述】:我正在使用 gperftools v2.3rc 并希望使用改进的线程分析功能。发行说明部分说明:
现在在 Linux 上实现了新的 cpu 分析模式。它为单独的线程设置单独的分析计时器。 ...如果同时加载了 librt.f 并设置了 CPUPROFILE_PER_THREAD_TIMERS 环境变量,则启用 [It]。 ...
我的 C++ 应用程序与 librt.so(-lrt — POSIX.1b 实时扩展库)链接,但我之前没有听说过带有 .f 后缀的库。 .f 是什么意思,我在哪里可以找到这个库,以及如何在我的应用程序中加载它?
【问题讨论】:
【参考方案1】:我怀疑是由于缺乏咖啡引起的暂时性关节炎(这是一个错字)。意思是librt.so。从src/profile-handler.cc
中间:
// We use weak alias to timer_create to avoid runtime dependency on
// -lrt and in turn -lpthread.
//
// At runtime we detect if timer_create is available and if so we
// can enable linux-sigev-thread mode of profiling
在代码中进一步向下:
#if HAVE_LINUX_SIGEV_THREAD_ID
if (getenv("CPUPROFILE_PER_THREAD_TIMERS"))
if (timer_create && pthread_once) // <-- note this bit here.
timer_sharing_ = TIMERS_SEPARATE;
CreateThreadTimerKey(&thread_timer_key);
per_thread_timer_enabled_ = true;
else
RAW_LOG(INFO,
"Not enabling linux-per-thread-timers mode due to lack of timer_create."
" Preload or link to librt.so for this to work");
#endif
它正在检查 envvar 是否已设置并且 librt 是否已加载。这是关于 librt.so 的。
【讨论】:
以上是关于C++ 库名称中的“f”后缀是啥意思,如何加载它?的主要内容,如果未能解决你的问题,请参考以下文章
电脑里的动态连接库是啥意思?如果打开文件经常与它连接不上是啥回事该怎么办?