The linkonce feature is a sort of proto-comdat. bfd and gold appear to
treat linkonce sections as if they were single-element comdat groups named
after the section name suffix (which means they can cause comdat groups to
be discarded), and this feature is necessary to link parts of the x86-32
CRT on Linux.
We only need support for .gnu.linkonce.t.* for the CRT (and I cannot find
any other uses of linkonce in the x86-32 prebuilt libraries on my system),
so this patch does only that.
Fixes PR31215.