meson: fix -Wall warning

Meson already handles Wall via the built-in warning_level option.

Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Message-Id: <20201207130055.462734-2-marcandre.lureau@redhat.com>
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
main
Marc-André Lureau 2020-12-07 17:00:51 +04:00 committed by David Gibson
parent 5e735860c4
commit 30a56bce4f
1 changed files with 12 additions and 10 deletions

View File

@ -6,8 +6,8 @@ project('dtc', 'c',


cc = meson.get_compiler('c') cc = meson.get_compiler('c')


add_project_arguments(cc.get_supported_arguments([ add_project_arguments(
'-Wall', cc.get_supported_arguments([
'-Wpointer-arith', '-Wpointer-arith',
'-Wcast-qual', '-Wcast-qual',
'-Wnested-externs', '-Wnested-externs',
@ -15,7 +15,9 @@ add_project_arguments(cc.get_supported_arguments([
'-Wmissing-prototypes', '-Wmissing-prototypes',
'-Wredundant-decls', '-Wredundant-decls',
'-Wshadow' '-Wshadow'
]),language: 'c') ]),
language: 'c'
)


if host_machine.system() == 'windows' if host_machine.system() == 'windows'
add_project_arguments( add_project_arguments(