svn commit: r328305 - head/lib/libcxxrt

Dimitry Andric dim at FreeBSD.org
Wed Jan 24 11:51:18 UTC 2018


On 23 Jan 2018, at 23:41, Ed Maste <emaste at freebsd.org> wrote:
> 
> Author: emaste
> Date: Tue Jan 23 22:41:13 2018
> New Revision: 328305
> URL: https://svnweb.freebsd.org/changeset/base/328305
> 
> Log:
>  libcxxrt: Move mangled symbols out of extern "C++" in Version.map
> 
>  r260553 added a number of mangled C++ symbols to Version.map inside of
>  an existing `extern "C++"` block.
> 
>  ld.bfd 2.17.50 treats `extern "C++"` permissively and will match both
>  mangled and demangled symbols against the strings in the version map
>  block.  ld.lld interprets `extern "C++"` strictly, and matches only
>  demangled symbols.
> 
>  I believe lld's behaviour is correct.  Contemporary versions of ld.bfd
>  also behave as lld does, so move the mangled symbols out of the
>  `extern "C++"` block.
> 
>  PR:		225128, 185663
>  MFC after:	1 week
>  Sponsored by:	The FreeBSD Foundation
> 
> Modified:
>  head/lib/libcxxrt/Version.map
> 
> Modified: head/lib/libcxxrt/Version.map
> ==============================================================================
> --- head/lib/libcxxrt/Version.map	Tue Jan 23 22:18:45 2018	(r328304)
> +++ head/lib/libcxxrt/Version.map	Tue Jan 23 22:41:13 2018	(r328305)
> @@ -112,19 +112,6 @@ CXXABI_1.3 {
>         "typeinfo for void";
>         "typeinfo for wchar_t const*";
>         "typeinfo for wchar_t";
> -        # C++11 typeinfo not understood by our linker
> -        # std::nullptr_t
> -        _ZTIDn;_ZTIPDn;_ZTIPKDn;

Maybe, for readability, we should change these to unmangled form instead?

I didn't really understand why the file had mixed mangled and unmangled forms.

-Dimitry

-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 223 bytes
Desc: Message signed with OpenPGP
URL: <http://lists.freebsd.org/pipermail/svn-src-head/attachments/20180124/85d214a5/attachment-0001.sig>


More information about the svn-src-head mailing list