aboutsummaryrefslogtreecommitdiff
path: root/linux
diff options
context:
space:
mode:
authorFlavio Cruz <flaviocruz@gmail.com>2024-06-24 21:57:01 +0100
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2024-06-24 23:31:26 +0200
commit6e092540d50dc2137d5d5e886c80e4895568fba4 (patch)
treeb6bc1284e47148537b2803e6bfc1eb18fa516148 /linux
parent62e08a6d4599eac1f506b65c4b53f46fcf124c0d (diff)
downloadgnumach-6e092540d50dc2137d5d5e886c80e4895568fba4.tar.gz
gnumach-6e092540d50dc2137d5d5e886c80e4895568fba4.tar.bz2
gnumach-6e092540d50dc2137d5d5e886c80e4895568fba4.zip
Disable specific warnings that are now errors in GCC 14
Message-ID: <376mwj4qtzxqgg2p4teqefxep7qz2kxll25synb3sulgof24j5@wxhqtaf7ei32>
Diffstat (limited to 'linux')
-rw-r--r--linux/Makefrag.am8
1 files changed, 7 insertions, 1 deletions
diff --git a/linux/Makefrag.am b/linux/Makefrag.am
index 23384523..2af513b9 100644
--- a/linux/Makefrag.am
+++ b/linux/Makefrag.am
@@ -37,9 +37,15 @@ liblinux_a_CPPFLAGS = $(AM_CPPFLAGS) \
# corresponding text segment definitions, we must always optimize.
liblinux_a_CFLAGS = -O2 $(AM_CFLAGS)
+# Newer compilers (GCC >= 14) have turned on specific warnings as errors,
+# disable that here.
+DISABLED_ERRORS = -Wno-error=incompatible-pointer-types \
+ -Wno-error=implicit-function-declaration \
+ -Wno-error=int-conversion
# Disable warnings that are applied to the core Mach code.
liblinux_a_CFLAGS += -Wno-missing-prototypes -Wno-strict-prototypes \
- -Wno-old-style-definition
+ -Wno-old-style-definition \
+ $(DISABLED_ERRORS)
# See <http://lists.gnu.org/archive/html/bug-hurd/2006-01/msg00148.html>.
liblinux_a_CFLAGS += \