Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1628622

[PATCH 1/2] kbuild: clang: Disable 'address-of-packed-member' warning

From Matthias Kaehlcke <mka@chromium.org>
Newsgroups linux.kernel
Subject [PATCH 1/2] kbuild: clang: Disable 'address-of-packed-member' warning
Date 2017-04-21 23:50 +0200
Message-ID <tyOBc-2u9-21@gated-at.bofh.it> (permalink)
References <tyOBc-2u9-23@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


clang generates plenty of these warnings in different parts of the code,
to an extent that the warnings are little more than noise. Disable the
'address-of-packed-member' warning.

Signed-off-by: Matthias Kaehlcke <mka@chromium.org>
---
 Makefile | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Makefile b/Makefile
index 5039b9148d15..df5abf346354 100644
--- a/Makefile
+++ b/Makefile
@@ -703,6 +703,7 @@ KBUILD_CPPFLAGS += $(call cc-option,-Wno-unknown-warning-option,)
 KBUILD_CFLAGS += $(call cc-disable-warning, unused-variable)
 KBUILD_CFLAGS += $(call cc-disable-warning, format-invalid-specifier)
 KBUILD_CFLAGS += $(call cc-disable-warning, gnu)
+KBUILD_CFLAGS += $(call cc-disable-warning, address-of-packed-member)
 # Quiet clang warning: comparison of unsigned expression < 0 is always false
 KBUILD_CFLAGS += $(call cc-disable-warning, tautological-compare)
 # CLANG uses a _MergedGlobals as optimization, but this breaks modpost, as the
-- 
2.12.2.816.g2cccc81164-goog

Back to linux.kernel | Previous | Next | Find similar | Unroll thread


Thread

[PATCH 1/2] kbuild: clang: Disable 'address-of-packed-member' warning Matthias Kaehlcke <mka@chromium.org> - 2017-04-21 23:50 +0200

csiph-web