MINGW-packages/mingw-w64-python/0114-gcc-make-incompatible-pointer-types-as-warning.patch
2025-04-18 07:39:35 +02:00

31 lines
1017 B
Diff

From c202fe446df86d9fd8dd1d1311c093071dfdce7d Mon Sep 17 00:00:00 2001
From: Naveen M K <naveen521kk@gmail.com>
Date: Thu, 11 Jul 2024 13:58:20 +0530
Subject: [PATCH 114/N] gcc: make `incompatible-pointer-types` as warning
gcc 14 changed `incompatible-pointer-types` from warning to error
for now, make it as warning to avoid build failure
---
configure.ac | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/configure.ac b/configure.ac
index fe4d39f..5d1b6e2 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2528,6 +2528,14 @@ case $GCC in
yes)
CFLAGS_NODIST="$CFLAGS_NODIST -std=c11"
+ # GCC 14 and later error out with incompatible-pointer-types
+ # this only occues on mingw
+ case $host in
+ *-*-mingw*)
+ CFLAGS_NODIST="$CFLAGS_NODIST -Wno-error=incompatible-pointer-types"
+ ;;
+ esac
+
PY_CHECK_CC_WARNING([enable], [extra], [if we can add -Wextra])
AS_VAR_IF([ac_cv_enable_extra_warning], [yes],
[CFLAGS_NODIST="$CFLAGS_NODIST -Wextra"])