由于他们的Wiki或Github上没有说明,因此我尝试了以下方法:
克隆the git repositorymake
要运行examples/cpuinfo.c
:cd examples/
gcc -Wall -I../include -L../build-src -lsigar cpuinfo.c
它给了我:
cpuinfo.c:(.text+0x20): undefined reference to `sigar_open'
cpuinfo.c:(.text+0x33): undefined reference to `sigar_cpu_list_get'
cpuinfo.c:(.text+0x4d): undefined reference to `sigar_strerror'
cpuinfo.c:(.text+0xff): undefined reference to `sigar_cpu_list_destroy'
cpuinfo.c:(.text+0x10b): undefined reference to `sigar_close'
要解决这些错误,我必须将其链接到什么?
最佳答案
将-lsigar
移到cpuinfo.c之后的列表末尾
关于c - 如何为C/C++构建和使用Sigar?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/27378584/