svn commit: r251820 - head/gnu/lib/libsupc++
David Chisnall
theraven at FreeBSD.org
Sun Jun 16 21:15:35 UTC 2013
Author: theraven
Date: Sun Jun 16 21:15:35 2013
New Revision: 251820
URL: http://svnweb.freebsd.org/changeset/base/251820
Log:
Fix some missing symbols in the libsupc++ Version.map
MFC after: 1 week
Modified:
head/gnu/lib/libsupc++/Version.map
Modified: head/gnu/lib/libsupc++/Version.map
==============================================================================
--- head/gnu/lib/libsupc++/Version.map Sun Jun 16 20:51:44 2013 (r251819)
+++ head/gnu/lib/libsupc++/Version.map Sun Jun 16 21:15:35 2013 (r251820)
@@ -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()";
};
};
More information about the svn-src-all
mailing list