- Rebase to QEMU 10.1.0 [RHEL-105035] - Resolves: RHEL-105035 (Rebase qemu-kvm to QEMU 10.1.0)
37 lines
1021 B
Diff
37 lines
1021 B
Diff
From 7eff7b32584a50d73053b4e3e007621b14ebf766 Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?Daniel=20P=2E=20Berrang=C3=A9?= <berrange@redhat.com>
|
|
Date: Wed, 3 Jul 2024 13:32:32 +0100
|
|
Subject: meson: temporarily disable -Wunused-function
|
|
MIME-Version: 1.0
|
|
Content-Type: text/plain; charset=UTF-8
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
Deleting the upstream versioned machine types will leave some functions
|
|
unused until RHEL machine types are added once again. Temporarily
|
|
disable the -Wunused-function warning to preserve bisectability with
|
|
fine grained patch splits.
|
|
|
|
Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
|
|
|
|
Rebase notes (9.1.0)
|
|
- New patch
|
|
---
|
|
meson.build | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
diff --git a/meson.build b/meson.build
|
|
index 50c774a195..0e0120a613 100644
|
|
--- a/meson.build
|
|
+++ b/meson.build
|
|
@@ -757,6 +757,7 @@ warn_flags = [
|
|
'-Wno-string-plus-int',
|
|
'-Wno-tautological-type-limit-compare',
|
|
'-Wno-typedef-redefinition',
|
|
+ '-Wno-unused-function',
|
|
]
|
|
|
|
if host_os != 'darwin'
|
|
--
|
|
2.39.3
|
|
|