VScode 中的未定义引用错误

undefined reference error in VScode

我正在测试如何在 C 中使用 extern,所以我为 main.c、test.c、headfile.h 创建了三个文件。我想在 headfile.h 中声明变量和函数,在 test.c 中定义,然后在 main.c 中打印出变量和调用函数 它通过使用 Dev c++ 成功运行,但是,当我将完全相同的文件放入 VScode 时,它显示错误,即存在未定义的变量引用

错误信息 enter image description here

main.c

#include <stdio.h>
#include <stdlib.h>
#include"D:\My Documents\Desktop\CODE\c\VScode\externTest\headfile.h"
int gVar = 1;

int main(void)
{
    extern float a;

    printf("a = %f\n",a);
    printf("gVar = %d\n",gVar);
    printf("aa = %d\n",aa);
    printf("bb = %f\n",bb);
    function ();
    system("pause");
    return 0;
}

test.c

#include <stdio.h>
#include "D:\My Documents\Desktop\CODE\c\VScode\externTest\headfile.h" 
float a = 100;
int aa = 200;
float bb = 300;

void function (void){
    printf("yeh you got it!!\n");
    extern int gVar;
    gVar++;
    printf("gVar in test.c function = %d",gVar);
}

headfile.h

extern int aa;
extern float bb;
void function(void);

您的 main.c 文件似乎没有与 test.c 链接。 我已经能够使用以下编译命令重现完全相同的错误消息:

$ gcc main.c
/tmp/ccVqEXL5.o: In function `main':
main.c:(.text+0x8): undefined reference to `a'
main.c:(.text+0x38): undefined reference to `aa'
main.c:(.text+0x51): undefined reference to `bb'
main.c:(.text+0x69): undefined reference to `function'
collect2: error: ld returned 1 exit status

要解决此问题,只需通过执行 gcc main.c test.c.

test.c 文件添加到编译中

如果您尝试包含额外的 class 文件,而这是您的原始 运行 命令:

cd "c:\myfolder\" ; if ($?) { g++ mainfile.cpp -o mainfile } ; if ($?) { .\mainfile}

像这样添加额外的文件名(例如Shape.cpp & Circle.cpp):

cd "c:\myfolder\" ; if ($?) { g++ mainfile.cpp Shape.cpp Circle.cpp -o mainfile } ; if ($?) { .\mainfile}

又是运行

@Ra'Jiska 提供的答案是正确的,但如果您想使用 VScode 编译代码,那么这样做并不简单。您需要向 tasks.json(由 VScode 使用编译代码的命令生成的文件)指示您的程序需要编译哪些额外文件。

更具体地说,您需要在“任务”列表的“args”部分添加行 "${fileDirname}/test.c"