summaryrefslogtreecommitdiffstats
path: root/scripts/Makefile.extrawarn
diff options
context:
space:
mode:
authorMasahiro Yamada2017-04-13 00:25:21 +0200
committerMasahiro Yamada2017-04-23 09:09:15 +0200
commita0ae981eba8f07dbc74bce38fd3a462b69a5bc8e (patch)
tree02cbf65f38f581ce0afdcd3c0642bf5c0127b202 /scripts/Makefile.extrawarn
parentkbuild: fix asm-offset generation to work with clang (diff)
downloadkernel-qcow2-linux-a0ae981eba8f07dbc74bce38fd3a462b69a5bc8e.tar.gz
kernel-qcow2-linux-a0ae981eba8f07dbc74bce38fd3a462b69a5bc8e.tar.xz
kernel-qcow2-linux-a0ae981eba8f07dbc74bce38fd3a462b69a5bc8e.zip
kbuild: drop -Wno-unknown-warning-option from clang options
Since commit c3f0d0bc5b01 ("kbuild, LLVMLinux: Add -Werror to cc-option to support clang"), cc-option and friends work nicely for clang. However, -Wno-unknown-warning-option makes clang happy with any unknown warning options even if -Werror is specified. Once -Wno-unknown-warning-option is added, any succeeding call of cc-disable-warning is evaluated positive, then unknown warning options are accepted. This should be dropped. Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Diffstat (limited to 'scripts/Makefile.extrawarn')
-rw-r--r--scripts/Makefile.extrawarn1
1 files changed, 0 insertions, 1 deletions
diff --git a/scripts/Makefile.extrawarn b/scripts/Makefile.extrawarn
index 7c321a603b07..fb3522fd8702 100644
--- a/scripts/Makefile.extrawarn
+++ b/scripts/Makefile.extrawarn
@@ -64,7 +64,6 @@ ifeq ($(cc-name),clang)
KBUILD_CFLAGS += $(call cc-disable-warning, initializer-overrides)
KBUILD_CFLAGS += $(call cc-disable-warning, unused-value)
KBUILD_CFLAGS += $(call cc-disable-warning, format)
-KBUILD_CFLAGS += $(call cc-disable-warning, unknown-warning-option)
KBUILD_CFLAGS += $(call cc-disable-warning, sign-compare)
KBUILD_CFLAGS += $(call cc-disable-warning, format-zero-length)
KBUILD_CFLAGS += $(call cc-disable-warning, uninitialized)