- 论坛徽章:
- 0
|
使用Ubuntu 10.10学习Linux设备驱动的开发,内核版本是2.6.35,gcc编译器的版本是4.4.5
编译的代码是《Linux设备驱动程序》最简单的示例程序,程序如下:
/*
* $Id: hello.c,v 1.5 2004/10/26 03:32:21 corbet Exp $
*/
#include <linux/init.h>
#include <linux/module.h>
MODULE_LICENSE("Dual BSD/GPL");
static int hello_init(void)
{
printk(KERN_ALERT "Hello, world\n");
return 0;
}
static void hello_exit(void)
{
printk(KERN_ALERT "Goodbye, cruel world\n");
}
module_init(hello_init);
module_exit(hello_exit);
环境变量C_INCLUDE_PATH已经设置为指向内核源码include的文件夹的路径了
在Ubuntu终端输入命令:gcc -O hello.c,编译失败,报错如下:
/usr/src/linux-headers-2.6.35-22/include/linux/init.h:250: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘parse_early_param’
/usr/src/linux-headers-2.6.35-22/include/linux/init.h:251: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘parse_early_options’
In file included from /usr/src/linux-headers-2.6.35-22/include/linux/list.h:6,
from /usr/src/linux-headers-2.6.35-22/include/linux/module.h:9,
from hello.c:5:
/usr/src/linux-headers-2.6.35-22/include/linux/prefetch.h:14: fatal error: asm/processor.h: No such file or directory
compilation terminated.
错误都是发生在内核的源代码里,所以不能对内核源代码进行修改,望有大神能够帮忙解答!不胜感激 |
|