C++ 错误:未定义对“clock_gettime”和“clock_settime”的引用

问题描述 投票:0回答:5

我对 Ubuntu 还很陌生,但我似乎无法让它工作。它在我学校的计算机上运行良好,我不知道我没有做什么。我已经检查了 usr/include 和 time.h 是否正常。这是代码:

#include <iostream>
#include <time.h>
using namespace std;

int main()
{
    timespec time1, time2;
    int temp;
    clock_gettime(CLOCK_PROCESS_CPUTIME_ID, &time1);
    //do stuff here
    clock_gettime(CLOCK_PROCESS_CPUTIME_ID, &time2);
    return 0;
}

我也使用 CodeBlocks 作为我的 IDE 来构建和运行。任何帮助都会很棒,谢谢。

c++ linux ubuntu posix time.h
5个回答
304
投票

-lrt
添加到 g++ 命令行的末尾。此链接位于 librt.so“实时”共享库中。


44
投票

示例:

c++ -Wall filefork.cpp -lrt -O2

对于

gcc
版本 4.6.1,
-lrt
必须位于 after filefork.cpp,否则会出现链接错误。

一些旧的

gcc
版本不关心位置。


38
投票

自 glibc 版本 2.17 起,不再需要链接

-lrt
的库。

clock_*
现在是主 C 库的一部分。您可以查看glibc 2.17的更改历史,其中进行了此更改,解释了此更改的原因:

+* The `clock_*' suite of functions (declared in <time.h>) is now available
+  directly in the main C library.  Previously it was necessary to link with
+  -lrt to use these functions.  This change has the effect that a
+  single-threaded program that uses a function such as `clock_gettime' (and
+  is not linked with -lrt) will no longer implicitly load the pthreads
+  library at runtime and so will not suffer the overheads associated with
+  multi-thread support in other code such as the C++ runtime library.

如果您决定升级 glibc,如果您担心使用较新的 glibc 是否会出现任何问题,可以检查 glibc 的兼容性跟踪器。 要检查系统上安装的 glibc 版本,请运行命令:

ldd --version

(当然,如果你使用旧的glibc(
-lrt

。)<2.17) then you will still need

    


27
投票
-lrt

这是正确的并且它已经工作了一段时间。重新安装 Kubuntu 后它停止工作。


一个单独的论坛帖子建议

-lrt

需要位于项目目标文件之后。 将

-lrt
移动到命令末尾为我解决了这个问题,尽管我不知道原因的详细信息。
    


0
投票
PATH

中删除将允许执行首选构建工具。

我遇到这个错误是因为我的 

PATH

中有带有自己的编译器和链接器的路径。运行

make
导致运行这些构建工具而不是系统默认值。
which ld
/usr/local/fsl/bin/ld
echo $PATH
/home/mike/.nvm/versions/node/v18.19.1/bin:/usr/local/fsl/share/fsl/bin:/usr/local/freesurfer/7.3.2/bin:/usr/local/freesurfer/7.3.2/fsfast/bin:/usr/local/freesurfer/7.3.2/tktools:/usr/local/fsl/bin:/usr/local/fsl/share/fsl/bin:/usr/local/freesurfer/7.3.2/mni/bin:/usr/local/fsl/share/fsl/bin:/usr/local/fsl/share/fsl/bin:/home/mike/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/snap/bin:/home/mike/.local/share/JetBrains/Toolbox/scripts:/home/mike/bin:/usr/local/fsl/bin:/opt/antsbin/ANTS-build/Examples:/home/mike/.config/gems/bin:/opt/workbench/bin_linux64:/home/mike/LocalProjects/jjm_utils/mri:/home/mike/abin

我重新导出了我的
PATH

,没有任何与该项目无关的混乱。

export PATH=/home/mike/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin
which ld
/usr/bin/ld

在这个 shell 中,通过简化的 
PATH

,项目完美构建。

    

© www.soinside.com 2019 - 2024. All rights reserved.