build: warn on unused parameter

To improve code quality we want to turn on as many warnings as we can in
the DPDK code, so turn on the "unused-parameter" warning in meson builds to
match that of the make builds. To ensure correct compilation, disable the
warning selectively for driver base code that otherwise would have issues.

Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
Acked-by: Luca Boccassi <bluca@debian.org>
This commit is contained in:
Bruce Richardson 2019-05-15 12:38:47 +01:00 committed by Thomas Monjalon
parent c649f0b4f5
commit 982e43658c
4 changed files with 7 additions and 2 deletions

View File

@ -143,6 +143,7 @@ add_project_arguments('-include', 'rte_config.h', language: 'c')
# enable extra warnings and disable any unwanted warnings
warning_flags = [
'-Wunused-parameter',
'-Wsign-compare',
'-Wcast-qual',
'-Wno-address-of-packed-member'

View File

@ -13,7 +13,8 @@ sources = [
error_cflags = ['-Wno-sign-compare', '-Wno-unused-value',
'-Wno-format', '-Wno-error=format-security',
'-Wno-strict-aliasing', '-Wno-unused-but-set-variable'
'-Wno-strict-aliasing', '-Wno-unused-but-set-variable',
'-Wno-unused-parameter',
]
c_args = cflags
if allow_experimental_apis

View File

@ -16,6 +16,7 @@ sources = [
error_cflags = ['-Wno-unused-value',
'-Wno-unused-but-set-variable',
'-Wno-unused-variable',
'-Wno-unused-parameter',
]
c_args = cflags

View File

@ -18,7 +18,9 @@ sources = [
]
error_cflags = ['-Wno-unused-value',
'-Wno-unused-but-set-variable']
'-Wno-unused-but-set-variable',
'-Wno-unused-parameter',
]
c_args = cflags
if allow_experimental_apis
c_args += '-DALLOW_EXPERIMENTAL_API'