From 1ecc54888fde25f63cb26740a000bbadf0d4b199 Mon Sep 17 00:00:00 2001 From: Chris Wilson Date: Mon, 15 May 2023 23:08:41 -0700 Subject: [PATCH] extmod/extmod.mk: Suppress deprecated-non-prototype warning. Signed-off-by: Chris Wilson --- extmod/extmod.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extmod/extmod.mk b/extmod/extmod.mk index 40f4237ce4a7..ee9372e18d9b 100644 --- a/extmod/extmod.mk +++ b/extmod/extmod.mk @@ -294,7 +294,7 @@ SRC_THIRDPARTY_C += $(addprefix $(BTREE_DIR)/,\ CFLAGS_EXTMOD += -DMICROPY_PY_BTREE=1 # we need to suppress certain warnings to get berkeley-db to compile cleanly # and we have separate BTREE_DEFS so the definitions don't interfere with other source code -$(BUILD)/$(BTREE_DIR)/%.o: CFLAGS += -Wno-old-style-definition -Wno-sign-compare -Wno-unused-parameter $(BTREE_DEFS) +$(BUILD)/$(BTREE_DIR)/%.o: CFLAGS += -Wno-old-style-definition -Wno-sign-compare -Wno-unused-parameter -Wno-deprecated-non-prototype -Wno-unknown-warning-option $(BTREE_DEFS) $(BUILD)/extmod/modbtree.o: CFLAGS += $(BTREE_DEFS) endif