1
0
mirror of https://github.com/systemd/systemd synced 2024-07-08 20:15:55 +00:00

meson: Add --warn-common and --fatal-warnings to link flags

This commit is contained in:
Jan Janssen 2021-11-04 19:03:45 +01:00 committed by Yu Watanabe
parent aac977c892
commit 42e3bb357c

View File

@ -387,11 +387,16 @@ endif
# --as-needed and --no-undefined are provided by meson by default,
# run 'meson configure' to see what is enabled
possible_link_flags = [
'-Wl,-z,relro',
'-Wl,--fatal-warnings',
'-Wl,-z,now',
'-Wl,-z,relro',
'-fstack-protector',
]
if get_option('b_sanitize') == 'none'
possible_link_flags += '-Wl,--warn-common'
endif
if cc.get_id() == 'clang'
possible_common_cc_flags += [
'-Wno-typedef-redefinition',