Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 21 Feb 2017 21:48:45 +0000 (UTC)
From:      Dimitry Andric <dim@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r314061 - head/lib/libcxxrt
Message-ID:  <201702212148.v1LLmjds093691@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: dim
Date: Tue Feb 21 21:48:45 2017
New Revision: 314061
URL: https://svnweb.freebsd.org/changeset/base/314061

Log:
  Add __int128-related symbols to libcxxrt's version map.  Put these into
  the same CXXABI verions as recent libstdc++.
  
  Note that __int128 types are only available on arches where long long is
  128 bit wide.
  
  Noticed by:	harti
  MFC after:	2 weeks

Modified:
  head/lib/libcxxrt/Version.map

Modified: head/lib/libcxxrt/Version.map
==============================================================================
--- head/lib/libcxxrt/Version.map	Tue Feb 21 21:21:58 2017	(r314060)
+++ head/lib/libcxxrt/Version.map	Tue Feb 21 21:48:45 2017	(r314061)
@@ -254,10 +254,27 @@ CXXABI_1.3.1 {
     __cxa_get_exception_ptr;
 } CXXABI_1.3;
 
+CXXABI_1.3.5 {
+    "typeinfo for __int128 const*";
+    "typeinfo for __int128";
+    "typeinfo for __int128*";
+    "typeinfo for unsigned __int128 const*";
+    "typeinfo for unsigned __int128";
+    "typeinfo for unsigned __int128*";
+} CXXABI_1.3.1;
+
 CXXABI_1.3.6 {
     __cxa_deleted_virtual;
-} CXXABI_1.3.1;
+} CXXABI_1.3.5;
 
+CXXABI_1.3.9 {
+    "typeinfo name for __int128 const*";
+    "typeinfo name for __int128";
+    "typeinfo name for __int128*";
+    "typeinfo name for unsigned __int128 const*";
+    "typeinfo name for unsigned __int128";
+    "typeinfo name for unsigned __int128*";
+} CXXABI_1.3.6;
 
 CXXRT_1.0 {
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201702212148.v1LLmjds093691>