Skip to content

Commit

Permalink
libvduse: Add extra compiler warnings
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
holtmann authored and bonzini committed Jan 11, 2023
1 parent 722b62d commit 8d5666d
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion 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'),
Expand Down

0 comments on commit 8d5666d

Please sign in to comment.