Port WARNCFLAGS of CMakeLists.txt to meson.build
And let CMake determine which compiler warning flags are available as suggested in [1]. [1] https://gitlab.com/federicomenaquintero/bzip2/merge_requests/19#note_206149857
This commit is contained in:
parent
3eff339237
commit
4a8a9fd228
@ -129,6 +129,7 @@ else()
|
||||
endif()
|
||||
|
||||
# For C compiler
|
||||
# Please keep this list in sync with meson.build
|
||||
extract_valid_c_flags(WARNCFLAGS
|
||||
-Wall
|
||||
-Wextra
|
||||
@ -154,22 +155,22 @@ else()
|
||||
-Waddress
|
||||
-Wattributes
|
||||
-Wdiv-by-zero
|
||||
# -Wshorten-64-to-32 # May be missing from GCC
|
||||
-Wshorten-64-to-32
|
||||
-Wconversion
|
||||
# -Wextended-offsetof # May be missing from GCC
|
||||
-Wextended-offsetof
|
||||
-Wformat-nonliteral
|
||||
# -Wlanguage-extension-token # May be missing from GCC
|
||||
-Wlanguage-extension-token
|
||||
-Wmissing-field-initializers
|
||||
-Wmissing-noreturn
|
||||
# -Wmissing-variable-declarations # May be missing from GCC
|
||||
-Wmissing-variable-declarations
|
||||
# -Wpadded # Not used because we cannot change public structs
|
||||
-Wsign-conversion
|
||||
# -Wswitch-enum # Not used because this basically disallows default case
|
||||
# -Wunreachable-code-break # May be missing from GCC
|
||||
-Wunreachable-code-break
|
||||
-Wunused-macros
|
||||
-Wunused-parameter
|
||||
-Wredundant-decls
|
||||
# -Wheader-guard # Only work with Clang for the moment
|
||||
-Wheader-guard
|
||||
-Wno-format-nonliteral # This is required because we pass format string as "const char*.
|
||||
)
|
||||
endif()
|
||||
|
41
meson.build
41
meson.build
@ -16,7 +16,48 @@ configure_file(
|
||||
|
||||
cc = meson.get_compiler('c')
|
||||
add_project_arguments(cc.get_supported_arguments([
|
||||
# Please keep this list in sync with CMakeLists.txt
|
||||
'-Wall',
|
||||
'-Wextra',
|
||||
'-Wmissing-prototypes',
|
||||
'-Wstrict-prototypes',
|
||||
'-Wmissing-declarations',
|
||||
'-Wpointer-arith',
|
||||
'-Wdeclaration-after-statement',
|
||||
'-Wformat-security',
|
||||
'-Wwrite-strings',
|
||||
'-Wshadow',
|
||||
'-Winline',
|
||||
'-Wnested-externs',
|
||||
'-Wfloat-equal',
|
||||
'-Wundef',
|
||||
'-Wendif-labels',
|
||||
'-Wempty-body',
|
||||
'-Wcast-align',
|
||||
'-Wclobbered',
|
||||
'-Wvla',
|
||||
'-Wpragmas',
|
||||
'-Wunreachable-code',
|
||||
'-Waddress',
|
||||
'-Wattributes',
|
||||
'-Wdiv-by-zero',
|
||||
'-Wshorten-64-to-32',
|
||||
'-Wconversion',
|
||||
'-Wextended-offsetof',
|
||||
'-Wformat-nonliteral',
|
||||
'-Wlanguage-extension-token',
|
||||
'-Wmissing-field-initializers',
|
||||
'-Wmissing-noreturn',
|
||||
'-Wmissing-variable-declarations',
|
||||
# '-Wpadded', # Not used because we cannot change public structs
|
||||
'-Wsign-conversion',
|
||||
# '-Wswitch-enum', # Not used because this basically disallows default case
|
||||
'-Wunreachable-code-break',
|
||||
'-Wunused-macros',
|
||||
'-Wunused-parameter',
|
||||
'-Wredundant-decls',
|
||||
'-Wheader-guard',
|
||||
'-Wno-format-nonliteral', # This is required because we pass format string as "const char*.
|
||||
]),
|
||||
language : 'c',
|
||||
)
|
||||
|
Loading…
Reference in New Issue
Block a user