zl程序教程

您现在的位置是:首页 >  系统

当前栏目

Linux之kernel编译去掉:-Werror=format=

Linux 编译 去掉 format Kernel
2023-09-14 09:09:56 时间
# git diff  kernel/Makefile
KBUILD_AFLAGS   := -D__ASSEMBLY__
KBUILD_CFLAGS   := -Wall -Werror -Wundef -Wstrict-prototypes -Wno-trigraphs \
		   -fno-strict-aliasing -fno-common -fshort-wchar \
		   -Werror-implicit-function-declaration \
		   -Wno-format-security \
+		   -fno-delete-null-pointer-checks \
+		   -w \
		   -std=gnu89
KBUILD_CPPFLAGS := -D__KERNEL__