aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcel Holtmann <marcel@holtmann.org>2022-12-22 21:36:51 +0100
committerPaolo Bonzini <pbonzini@redhat.com>2023-01-11 10:44:35 +0100
commit8d5666d76b0a2b0f852e51412c79c3d3d8c90801 (patch)
tree517895ef0878bb67979914f1308e6204e8eb4cdb
parent722b62d97d75689cff1ef3f1e4eb6d77d6498811 (diff)
downloadqemu-8d5666d76b0a2b0f852e51412c79c3d3d8c90801.zip
qemu-8d5666d76b0a2b0f852e51412c79c3d3d8c90801.tar.gz
qemu-8d5666d76b0a2b0f852e51412c79c3d3d8c90801.tar.bz2
libvduse: Add extra compiler warnings
In case libvhost-user is used externally, that projects compiler warnings might be more strict. Enforce an extra set of compiler warnings to catch issues early on. Signed-off-by: Marcel Holtmann <marcel@holtmann.org> Suggested-by: Paolo Bonzini <pbonzini@redhat.com> Message-Id: <08daa1896ad8824e17d57d6a970bc0b4bee73ece.1671741278.git.marcel@holtmann.org> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
-rw-r--r--subprojects/libvduse/meson.build8
1 files changed, 7 insertions, 1 deletions
diff --git a/subprojects/libvduse/meson.build b/subprojects/libvduse/meson.build
index ba08f5e..3e3b53d 100644
--- a/subprojects/libvduse/meson.build
+++ b/subprojects/libvduse/meson.build
@@ -1,6 +1,12 @@
project('libvduse', 'c',
license: 'GPL-2.0-or-later',
- default_options: ['c_std=gnu99'])
+ default_options: ['warning_level=1', 'c_std=gnu99'])
+
+cc = meson.get_compiler('c')
+add_project_arguments(cc.get_supported_arguments('-Wsign-compare',
+ '-Wdeclaration-after-statement',
+ '-Wstrict-aliasing'),
+ native: false, language: 'c')
libvduse = static_library('vduse',
files('libvduse.c'),