kbuild: use -Werror=implicit-... instead of -Werror-implicit-...
authorLuc Van Oostenryck <luc.vanoostenryck@gmail.com>
Mon, 4 Mar 2019 12:55:20 +0000 (13:55 +0100)
committerMasahiro Yamada <yamada.masahiro@socionext.com>
Mon, 4 Mar 2019 13:39:20 +0000 (22:39 +0900)
The flag '-Werror-implicit-function-declaration', present in GCC 2.95,
stopped to be documented in GCC 4.3, replaced by the more generic
'-Werror=...' form.

So, use the equivalent '-Werror=implicit-function-declaration' instead.

Signed-off-by: Luc Van Oostenryck <luc.vanoostenryck@gmail.com>
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Makefile

index 8d04447..ade8709 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -430,7 +430,7 @@ LINUXINCLUDE    := \
 KBUILD_AFLAGS   := -D__ASSEMBLY__ -fno-PIE
 KBUILD_CFLAGS   := -Wall -Wundef -Werror=strict-prototypes -Wno-trigraphs \
                   -fno-strict-aliasing -fno-common -fshort-wchar -fno-PIE \
-                  -Werror-implicit-function-declaration -Werror=implicit-int \
+                  -Werror=implicit-function-declaration -Werror=implicit-int \
                   -Wno-format-security \
                   -std=gnu89
 KBUILD_CPPFLAGS := -D__KERNEL__