svn commit: r285110 - stable/9/lib/libcxxrt
Dimitry Andric
dim at FreeBSD.org
Fri Jul 3 20:31:27 UTC 2015
Author: dim
Date: Fri Jul 3 20:31:27 2015
New Revision: 285110
URL: https://svnweb.freebsd.org/changeset/base/285110
Log:
MFC r284732:
Add __cxa_deleted_virtual to libcxxrt's version map.
This symbol can sometimes be emitted by clang++, and was not yet
exported from libcxxrt. Attempt to be compatible with libsupc++ by
using the same CXXABI_1.3.6 symbol version.
Reported by: yuri at rawbw.com
PR: 200863
Reviewed by: emaste
Differential Revision: https://reviews.freebsd.org/D2850
Modified:
stable/9/lib/libcxxrt/Version.map
Directory Properties:
stable/9/ (props changed)
stable/9/lib/ (props changed)
stable/9/lib/libcxxrt/ (props changed)
Modified: stable/9/lib/libcxxrt/Version.map
==============================================================================
--- stable/9/lib/libcxxrt/Version.map Fri Jul 3 20:29:04 2015 (r285109)
+++ stable/9/lib/libcxxrt/Version.map Fri Jul 3 20:31:27 2015 (r285110)
@@ -254,6 +254,10 @@ CXXABI_1.3.1 {
__cxa_get_exception_ptr;
} CXXABI_1.3;
+CXXABI_1.3.6 {
+ __cxa_deleted_virtual;
+} CXXABI_1.3.1;
+
CXXRT_1.0 {
@@ -286,7 +290,7 @@ CXXRT_1.0 {
__cxa_increment_exception_refcount;
__cxa_rethrow_primary_exception;
-} CXXABI_1.3.1;
+} CXXABI_1.3.6;
GLIBCXX_3.4 {
More information about the svn-src-stable-9
mailing list