在C中编译:对`memcpy'的未定义引用

时间:2015-10-16 02:17:47

标签: c gcc ld nachos

我正在和Nachos一起开展学校项目,我收到一些奇怪的错误。您可以在此处查看我的代码:just the c file, lemme know if you need more

控制台的输出如下所示:

../gnu/gcc -G 0 -c -I../userprog -I../threads -I../machine -c threadtest.c
../gnu/ld -T newscript -N start.o threadtest.o -o threadtest.coff
threadtest.o: In function `CreateClerk':
threadtest.c:804: undefined reference to `memcpy'
threadtest.o: In function `ApplicationClerkNoCustomerAtRegister':
threadtest.c:902: undefined reference to `memcpy'
threadtest.c:902: undefined reference to `memcpy'
threadtest.c:902: undefined reference to `memcpy'
threadtest.o: In function `PictureClerkNoCustomerAtRegister':
threadtest.c:954: undefined reference to `memcpy'
threadtest.o:threadtest.c:954: more undefined references to `memcpy' follow
gmake: *** [threadtest] Error 1

在我的整个Nachos项目文件夹中,没有一次调用'memcpy'(我在带有Brackets的文件搜索中找到了它)。

这是第804行:

struct Clerk CreateClerk(char* _name, int _number, struct PassportOffice* _theOffice, struct Line* theLine) {
    struct Clerk theClerk;
    theClerk.name = _name;
    theClerk.number = _number;
    theClerk.theOffice = _theOffice;
    theClerk.myLine = theLine;
    LineSetClerk(theClerk.myLine,&theClerk);
    theClerk.dataLock = CreateLock("dataLock",8);
    theClerk.myBribeCV = CreateCV("myBribeCV",9);
    theClerk.breakCV = CreateCV("breakCV",7);
    theClerk.breakLock = CreateLock("breakLock",9);
    theClerk.walkUpCV = CreateCV("walkUpCV",8);
    return theClerk;
}

1 个答案:

答案 0 :(得分:2)

您应该使用gcc进行链接,而不是ld

当您通过gcc进行链接时,它会将系统库提供给ld。如果您通过ld进行链接,则必须自己指定所有内容以及其他一些内容。