免费注册 查看新帖 |

Chinaunix

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

打开调试信息 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2010-01-14 19:28 |只看该作者 |倒序浏览
如 在include/linux/device.h中.

#ifdef DEBUG
#define dev_dbg(dev, format, arg...)        \
    dev_printk(KERN_DEBUG , dev , format , ## arg)
#else
static inline int __attribute__ ((format (printf, 2, 3)))
dev_dbg(struct device * dev, const char * fmt, ...)
{
    return 0;
}
#endif

#ifdef VERBOSE_DEBUG
#define dev_vdbg    dev_dbg
#else
static inline int __attribute__ ((format (printf, 2, 3)))
dev_vdbg(struct device * dev, const char * fmt, ...)
{
    return 0;
}
#endif


如何打开DEBUG 和 VERBOSE_DEBUG 选项


又如 在include/linux/kernel.h 中
#ifdef DEBUG
/* If you are writing a driver, please use dev_dbg instead */
#define pr_debug(fmt, arg...) \
    printk(KERN_DEBUG fmt, ##arg)
#else
static inline int __attribute__ ((format (printf, 1, 2))) pr_debug(const char * fmt, ...)
{
    return 0;
}
#endif

这个DEBUG和device.h中的DEBUG是同一个吗? 即是打开一个 另外一个也相应打开。

论坛徽章:
0
2 [报告]
发表于 2010-01-14 21:59 |只看该作者
那你就要看看是否包含了这个头文件了

论坛徽章:
0
3 [报告]
发表于 2010-01-14 23:05 |只看该作者
看这两个头文件是不是都包含了定义DEBUG的头文件
如果是gcc -DDBUG传下来的 那么就是相同的
了解下作用域

论坛徽章:
0
4 [报告]
发表于 2010-01-18 09:36 |只看该作者
举个例子说把。
在linux-2.6 上lux/kernel/power/main.c   有pr_debug(....)  但是它没有打印出来, 在整个kernel中只有include/linux/kernel.h 中定义了pr_debug了。 但是在那个文件中又有
#ifdef DEBUG
/* If you are writing a driver, please use dev_dbg instead */
#define pr_debug(fmt, arg...) \
    printk(KERN_DEBUG fmt, ##arg)
#else
static inline int __attribute__ ((format (printf, 1, 2))) pr_debug(const char * fmt, ...)
{
    return 0;
}
#endif

那么就是说要定义DEBUG后才可以打开, 那么最终问题是如何打开这个DEBUG宏呢?


Thanks.

论坛徽章:
0
5 [报告]
发表于 2010-01-18 09:52 |只看该作者
你可以直接在gcc的参数中添加 -DDEBUG

论坛徽章:
0
6 [报告]
发表于 2014-12-01 15:41 |只看该作者
回复 1# studyboy_3w


    你好,你这个问题解决了吗?我也想知道改Makefile哪行,谢谢

论坛徽章:
0
7 [报告]
发表于 2014-12-01 15:42 |只看该作者
回复 5# emmoblin


    说的简单,内核makefile中有好多FLAGS,你能说的具体点吗?
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP