无法编译shmget/shmat



我绞尽脑汁想弄清楚为什么这在我的Minix系统上不起作用。

当我尝试编译我的C程序时,我得到以下错误:

#make
       link  pm/pm
program.o: In function `do_function':
program.c:(.text+0x1e): undefined reference to `shmget'
program.c:(.text+0x36): undefined reference to `shmat'
clang: error: linker command failed with exit code 1 (use -v to see invocation)
*** Error code 1
Stop.
make: stopped in /usr/src/servers/pm
#

这是我的代码:

#include <sys/shm.h>
#include <sys/types.h>
#include <sys/ipc.h>
#include <sys/stat.h>
/* Some other includes here */
typedef struct {
    //struct elemLi *next;
    //elem sem;
    int ref_count;
} elemLi;
int do_function(void){
    int segment_id; //Shared Memory ID
    struct elemLi* sli; //Shared Memory Pointer
    segment_id = shmget(IPC_PRIVATE, sizeof(elemLi),0660 | IPC_CREAT);
    sli = (struct elemLi *)shmat(segment_id,NULL,0);
    return -1;
}

如您所见,我已经为这些调用包含了适当的头文件,但它仍然说引用是未定义的。我能够在另一个程序中成功地使用它,所以我完全不知道为什么它在这个实例中不起作用。

编辑:这是一个系统调用。我想这没什么区别吧。

感谢大家的帮助,看起来链接器中缺失的库。我使用-lc将libc添加到Makefile中,现在它似乎正在编译。

相关内容

  • 没有找到相关文章

最新更新