29 lines
1.0 KiB
Diff
29 lines
1.0 KiB
Diff
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||
|
From: Nicolas Frayer <nfrayer@redhat.com>
|
||
|
Date: Wed, 17 Jan 2024 21:15:14 +0100
|
||
|
Subject: [PATCH] Ignore warnings for incompatible types
|
||
|
|
||
|
Add -Wno-incompatible-pointer-types to ignore warnings for incompatible
|
||
|
types
|
||
|
|
||
|
Signed-off-by: Nicolas Frayer <nfrayer@redhat.com>
|
||
|
---
|
||
|
configure.ac | 4 ++--
|
||
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
||
|
|
||
|
diff --git a/configure.ac b/configure.ac
|
||
|
index 79f45ef1e14c..b66e07c67851 100644
|
||
|
--- a/configure.ac
|
||
|
+++ b/configure.ac
|
||
|
@@ -2009,8 +2009,8 @@ if test x"$enable_wextra" != xno ; then
|
||
|
HOST_CFLAGS="$HOST_CFLAGS -Wextra"
|
||
|
fi
|
||
|
|
||
|
-TARGET_CFLAGS="$TARGET_CFLAGS -Werror=trampolines -fno-trampolines"
|
||
|
-HOST_CFLAGS="$HOST_CFLAGS -Werror=trampolines -fno-trampolines"
|
||
|
+TARGET_CFLAGS="$TARGET_CFLAGS -Werror=trampolines -fno-trampolines -Wno-incompatible-pointer-types"
|
||
|
+HOST_CFLAGS="$HOST_CFLAGS -Werror=trampolines -fno-trampolines -Wno-incompatible-pointer-types"
|
||
|
|
||
|
TARGET_CPP="$TARGET_CC -E"
|
||
|
TARGET_CCAS=$TARGET_CC
|