https://gcc.gnu.org/bugzilla/show_bug.cgi?id=118981
--- Comment #39 from GCC Commits <cvs-commit at gcc dot gnu.org> --- The master branch has been updated by Jonathan Wakely <r...@gcc.gnu.org>: https://gcc.gnu.org/g:d4a777d098d524a3f26c3db28e50d064a7a4407e commit r15-7677-gd4a777d098d524a3f26c3db28e50d064a7a4407e Author: Jonathan Wakely <jwak...@redhat.com> Date: Sat Feb 22 21:02:29 2025 +0000 libstdc++: Fix bootstrap failure with --enable-vtable-verify [PR118981] The compiler emits code with init_priority(99) for -fvtable-verify=std and that creates a section conflict with the uses of init_priority(99) that I recently added to src/c++20/tzdb.cc. Change tzdb.cc to use a different priority to avoid the conflict. libstdc++-v3/ChangeLog: PR c++/118981 * src/c++20/tzdb.cc: Use init_priority(98) instead of init_priority(99).