我是 Linux 编程的新手,我尝试编译一个简单的测试结构。但是编译时出现错误。添加 inc.c (在应用程序:行中)也不起作用。我应该如何正确包含文件?
生成文件:
app: main.c inc.h
cc -o app main.c
终端:
make
cc -o app main.c
/tmp/ccGgdRNy.o: In function `main':
main.c:(.text+0x14): undefined reference to `test'
collect2: error: ld returned 1 exit status
make: *** [app] Error 1
主.c:
#include <stdio.h>
#include "inc.h"
int main()
{
printf("Kijken of deze **** werkt:\n");
test();
getchar();
return 0;
}
英寸
#ifndef INCLUDE_H
#define INCLUDE_H
void test();
#endif
公司
#include <stdio.h>
void test()
{
printf("Blijkbaar wel!");
}