From 8e00b4d672f2eeeb4b8041401ced4eab86af4167 Mon Sep 17 00:00:00 2001 From: Tiago Medicci Date: Wed, 1 Jul 2026 15:59:06 -0300 Subject: [PATCH] interpreters/python: Disable `no-maybe-uninitialized` warning This commit disables the `no-maybe-uninitialized` warning because it's wrongly evaluated after increasing the optimization level of the Python's library. Signed-off-by: Tiago Medicci --- interpreters/python/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/interpreters/python/Makefile b/interpreters/python/Makefile index bda257932..c3acd5188 100644 --- a/interpreters/python/Makefile +++ b/interpreters/python/Makefile @@ -56,7 +56,7 @@ CFLAGS += -Wno-shadow -Wno-undef -Wno-format -Wno-builtin-macro-redefined CFLAGS += -Wno-type-limits -Wno-implicit-fallthrough -Wno-char-subscripts CFLAGS += -Wno-sign-compare -Wno-unused-const-variable -Wno-unused-function CFLAGS += -Wno-unused-variable -Wno-overflow -Wno-unused-but-set-variable -CFLAGS += -Wno-strict-prototypes -nostdlib +CFLAGS += -Wno-strict-prototypes -Wno-maybe-uninitialized -nostdlib DEPPATH += --dep-path $(CPYTHON_UNPACKNAME)$(DELIM)Programs VPATH += :$(CPYTHON_UNPACKNAME)$(DELIM)Programs