需求
在kernel中将所有的warning当做error处理,这样可以保证编译的时候没有warning。
解决办法
在Kernel中的Makefile
中的KBUILD_CFLAGS
的变量中加上-Werror
选项,通常如下:
1 | KBUILD_CFLAGS := -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs \ |
thinking all the time
在kernel中将所有的warning当做error处理,这样可以保证编译的时候没有warning。
在Kernel中的Makefile
中的KBUILD_CFLAGS
的变量中加上-Werror
选项,通常如下:
1 | KBUILD_CFLAGS := -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs \ |
Title:set warning as error
Author:Victor Huang
Time:2019-06-08 / 15:06
Link:http://wowothink.com/ab94cde8/
License: Attribution-NonCommercial-NoDerivatives 4.0 International (CC BY-NC-ND 4.0)