The Linux Kernel Mailing List
 help / color / mirror / Atom feed
* [PATCH] init/Kconfig: conditionalize GCC10_NO_ARRAY_BOUNDS
@ 2024-12-16  7:25 Shyam Saini
  2025-02-11 22:10 ` Shyam Saini
  0 siblings, 1 reply; 4+ messages in thread
From: Shyam Saini @ 2024-12-16  7:25 UTC (permalink / raw)
  To: masahiroy; +Cc: linux-kernel

GCC10_NO_ARRAY_BOUNDS is a GCC option and should only be enabled
if CC is GCC.

Signed-off-by: Shyam Saini <shyamsaini@linux.microsoft.com>
---
 init/Kconfig | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/init/Kconfig b/init/Kconfig
index c1f9eb3d5f2e8..52bb1419d6c0e 100644
--- a/init/Kconfig
+++ b/init/Kconfig
@@ -905,7 +905,7 @@ config CC_IMPLICIT_FALLTHROUGH
 # Currently, disable gcc-10+ array-bounds globally.
 # It's still broken in gcc-13, so no upper bound yet.
 config GCC10_NO_ARRAY_BOUNDS
-	def_bool y
+	def_bool y if CC_IS_GCC
 
 config CC_NO_ARRAY_BOUNDS
 	bool

base-commit: e25c8d66f6786300b680866c0e0139981273feba
-- 
2.34.1


^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2025-04-04 17:29 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-12-16  7:25 [PATCH] init/Kconfig: conditionalize GCC10_NO_ARRAY_BOUNDS Shyam Saini
2025-02-11 22:10 ` Shyam Saini
2025-03-27 18:35   ` Shyam Saini
2025-04-04 17:29     ` Kees Cook

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox