概述
写了一个需要使用动态计时器的程序,用到linux/timer.h,但是编译的时候提示timer.h文件有许多错误,如下
#include
#include
#include
void showint(unsigned long i)
{
printf("%c",'.');
}
int main(void)
{
timer_t *tl = (timer_t*)malloc(sizeof(timer_t));
init_timer(tl);
tl->expires = 100;
tl->function = showint;
add_timer(tl);
return 0;
}
Makefile 文件:
TARGETFILE = mytest
SRC = mytest.cpp
CC = g++
CCOPT = -g
INCLS = -I.
LIBS =
DEFS =
CFLAGS = $(CCOPT) $(INCLS) $(DEFS)
all:
$(CC) $(CFLAGS) $(SRC) -o $(TARGETFILE) $(LIBS)
clean:
rm -f *.o $(TARGETFILE) *.bak
错误信息
g++ -g -I. mytest.cpp -o mytest
In file included from mytest.cpp:7:
/usr/include/linux/timer.h:32: field `vec' has incomplete type
/usr/include/linux/timer.h:37: field `vec' has incomplete type
这些错误全都来自timer.h文件,而且我在网上发现很多人遇到同样的错误,但是好像大家并没有找到解决方法.
后来我试了试只要在你的源代码中加入#include,即使代码中不使用其中变量和函数
也会碰到上面的错误提示.btw我是在rh9下,用gcc2.3.3编译代码
|
是不是没有定义正确的宏?
最后
以上就是微笑薯片为你收集整理的linux头文件编译错误,为什么只要包含了linux/timer.h后就会编译出错的全部内容,希望文章能够帮你解决linux头文件编译错误,为什么只要包含了linux/timer.h后就会编译出错所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复