interpreters/python: Avoid warnings that could be treated as errors

This commit disables some warnings when building CPython to avoid
CI failing when `EXTRAFLAGS="-Wno-cpp -Werror"` is set.
This commit is contained in:
Tiago Medicci 2024-12-10 12:06:53 -03:00 committed by Xiang Xiao
parent 1f8b9aa74c
commit d7ed69200f
13 changed files with 100 additions and 32 deletions

View file

@ -1,12 +1,14 @@
From b2ac42cefa3747c7f7a9066fceed834286e829af Mon Sep 17 00:00:00 2001
From 3917fd37644948096c6bebf53e701b59fa527cf5 Mon Sep 17 00:00:00 2001
From: Ivan Grokhotkov <ivan@espressif.com>
Date: Tue, 22 Oct 2024 23:58:17 +0200
Subject: [PATCH 01/10] workaround newlib resource.h limitations
Subject: [PATCH 01/11] workaround newlib resource.h limitations
configure script checks if resource.h is available but doesn't check
if it defines all the necessary functions.
Temporary workaround until these functions are added to IDF.
Signed-off-by: Tiago Medicci <tiago.medicci@espressif.com>
---
Modules/faulthandler.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)