]> git.proxmox.com Git - mirror_qemu.git/commit
meson: Remove --warn-common ldflag
authorAkihiko Odaki <akihiko.odaki@daynix.com>
Sun, 3 Mar 2024 16:25:20 +0000 (01:25 +0900)
committerPaolo Bonzini <pbonzini@redhat.com>
Fri, 8 Mar 2024 14:51:21 +0000 (15:51 +0100)
commit5d402bd9aef3fdf9fbaa387db8be8318c9a37d0a
tree91e371fe3a93d8c7b23db7ad1565bc89d86c1040
parent012b170173bcaa14b9bc26209e0813311ac78489
meson: Remove --warn-common ldflag

--warn-common ldflag causes warnings for multiple definitions of
___asan_globals_registered when enabling AddressSanitizer with clang.
The warning is somewhat obsolete so just remove it.

The common block is used to allow duplicate definitions of uninitialized
global variables. In the past, GCC and clang used to place such
variables in a common block by default, which prevented programmers for
noticing accidental duplicate definitions. Commit 49237acdb725 ("Enable
ld flag --warn-common") added --warn-common ldflag so that ld warns in
such a case.

Today, both of GCC and clang don't use common blocks by default[1][2] so
any remaining use of common blocks should be intentional. Remove
--warn-common ldflag to suppress warnings for intentional use of
common blocks.

[1]: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=85678
[2]: https://reviews.llvm.org/D75056

Signed-off-by: Akihiko Odaki <akihiko.odaki@daynix.com>
Message-ID: <20240304-common-v1-1-1a2005d1f350@daynix.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
meson.build