diff options
author | dim <dim@FreeBSD.org> | 2015-06-23 17:54:24 +0000 |
---|---|---|
committer | dim <dim@FreeBSD.org> | 2015-06-23 17:54:24 +0000 |
commit | 1ecca63ad3bc3e6ec10bfd735d3daa7e86c0d912 (patch) | |
tree | 3ad2a49aa7805c8aec2c5bdfc53bd45f821d8ca1 | |
parent | 7d3cf54aed6e1c5ed5a8e0b7a91efbbbec51a994 (diff) | |
download | FreeBSD-src-1ecca63ad3bc3e6ec10bfd735d3daa7e86c0d912.zip FreeBSD-src-1ecca63ad3bc3e6ec10bfd735d3daa7e86c0d912.tar.gz |
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@rawbw.com
PR: 200863
Reviewed by: emaste
MFC after: 3 days
Differential Revision: https://reviews.freebsd.org/D2850
-rw-r--r-- | lib/libcxxrt/Version.map | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/libcxxrt/Version.map b/lib/libcxxrt/Version.map index b9e4cf9..9767542 100644 --- a/lib/libcxxrt/Version.map +++ b/lib/libcxxrt/Version.map @@ -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 { |