免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 5195 | 回复: 6
打印 上一主题 下一主题

[Linux] 学驱动开发时用GCC编译源码遇到编译错误和头文件找不到问题 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2014-06-29 16:03 |只看该作者 |倒序浏览
使用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.
错误都是发生在内核的源代码里,所以不能对内核源代码进行修改,望有大神能够帮忙解答!不胜感激

论坛徽章:
1
天蝎座
日期:2013-10-23 21:11:03
2 [报告]
发表于 2014-06-29 17:57 |只看该作者
安装内核开发包和源码包

论坛徽章:
1
白羊座
日期:2013-09-18 22:02:26
3 [报告]
发表于 2014-06-30 10:08 来自手机 |只看该作者
错误是没有找到头文件,再说不能这样编译每个模块。有专门的编译make需要自己看一下。

论坛徽章:
0
4 [报告]
发表于 2014-06-30 10:26 |只看该作者
2.6 版本以后的内核编译有区别。
百度一下吧。也挺简单的,写好 Makefile 就可以了。

论坛徽章:
0
5 [报告]
发表于 2014-06-30 20:56 |只看该作者
不是makefile指定下kdir么

论坛徽章:
0
6 [报告]
发表于 2014-07-01 15:04 |只看该作者
谢谢大家提醒,后面放弃了用gcc命令编译驱动模块,写了一个Makefile,通过了编译

论坛徽章:
0
7 [报告]
发表于 2014-07-01 15:05 |只看该作者
正解回复 4# ddm95


   
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP