Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 23 Jun 2013 14:36:13 +0000 (UTC)
From:      David Chisnall <theraven@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-9@freebsd.org
Subject:   svn commit: r252116 - stable/9/gnu/lib/libsupc++
Message-ID:  <201306231436.r5NEaDh9067553@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: theraven
Date: Sun Jun 23 14:36:12 2013
New Revision: 252116
URL: http://svnweb.freebsd.org/changeset/base/252116

Log:
  MFC r251820.  This fixes some symbol visibility issues with libsupc++ that broke
   compilation of GNUstep libobjc.

Modified:
  stable/9/gnu/lib/libsupc++/Version.map
Directory Properties:
  stable/9/gnu/lib/libsupc++/   (props changed)

Modified: stable/9/gnu/lib/libsupc++/Version.map
==============================================================================
--- stable/9/gnu/lib/libsupc++/Version.map	Sun Jun 23 14:20:54 2013	(r252115)
+++ stable/9/gnu/lib/libsupc++/Version.map	Sun Jun 23 14:36:12 2013	(r252116)
@@ -147,6 +147,13 @@ GLIBCXX_3.4 {
       std::set_terminate*;
       std::set_unexpected*;
 
+      "std::unexpected()";
+      "std::get_terminate()";
+      "std::get_unexpected()";
+      "std::uncaught_exception()";
+      "std::terminate()";
+
+
       std::bad_alloc;
       std::bad_cast;
       std::exception*;
@@ -154,14 +161,20 @@ GLIBCXX_3.4 {
       "typeinfo for std::bad_alloc";
       "typeinfo for std::bad_cast";
       "typeinfo for std::exception";
+      "typeinfo for std::type_info";
 
       "typeinfo name for std::bad_alloc";
       "typeinfo name for std::bad_cast";
       "typeinfo name for std::exception";
+      "typeinfo name for std::type_info";
 
       "vtable for std::bad_alloc";
       "vtable for std::bad_cast";
       "vtable for std::exception";
+      "vtable for std::type_info";
+
+      std::type_info::__*;
+      "std::type_info::~type_info()";
     };
 };
 



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