我只是系统崩溃,然后重新安装Ubuntu 11.10,我的代码产生了这个奇怪的错误。

我编写了一个简单的代码示例来测试问题所在:

#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <fcntl.h>
#include <sys/mman.h>
#include <sys/stat.h>

int main (void) {

    int i;

    i = shm_open ("/tmp/shared", O_CREAT | O_EXCL, S_IRUSR | S_IWUSR);   printf ("shm_open rc = %d\n", i);

    shm_unlink ("/tmp/shared");

    return (0);
}

编译命令是
gcc -lrt test.c -o test
错误是:
/tmp/ccxVIUiP.o: In function `main':
test.c:(.text+0x21): undefined reference to `shm_open'
test.c:(.text+0x46): undefined reference to `shm_unlink'
collect2: ld returned 1 exit status

我已经添加了-lrt lib,为什么还不能编译?

最佳答案

最后的库:



GCC Link Options:

-图书馆
-l库
链接时搜索名为library的库。
(第二种选择是使用库作为单独的参数
仅用于POSIX合规性,不建议使用。)

在命令中写入此选项的位置会有所不同。
链接器在以下位置搜索和处理库和目标文件:
指定顺序。
因此,`foo.o -lz bar.o'在文件foo.o之后搜索库'z',但是
在bar.o之前如果bar.o引用`z'中的函数,则这些函数
可能未加载。

关于c - undefined reference 'shm_open',已经在此处添加-lrt标志,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/9923495/

10-12 20:38