diff options
author | theraven <theraven@FreeBSD.org> | 2012-05-28 12:11:00 +0000 |
---|---|---|
committer | theraven <theraven@FreeBSD.org> | 2012-05-28 12:11:00 +0000 |
commit | 13fb9be43f134d10442d6632c1438aa4916acc8f (patch) | |
tree | e59f42cbbad78a7989a1ef45d9348c033519def6 /gnu | |
parent | e888f5e00cc55f77170cce44c847c965668d60bf (diff) | |
download | FreeBSD-src-13fb9be43f134d10442d6632c1438aa4916acc8f.zip FreeBSD-src-13fb9be43f134d10442d6632c1438aa4916acc8f.tar.gz |
Correctly export operator new / delete for things linking against libsupc++ but
not libstdc++.
Unfortunately, it appears that libsupc++ / libstdc++ have a different idea of
the type of size_t to the rest of the world, which may cause problems later
on...
Reported by: des
MFC after: 1 week
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/lib/libsupc++/Version.map | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/gnu/lib/libsupc++/Version.map b/gnu/lib/libsupc++/Version.map index 12438ca..dfe453a 100644 --- a/gnu/lib/libsupc++/Version.map +++ b/gnu/lib/libsupc++/Version.map @@ -126,6 +126,16 @@ CXXABI_1.3 { # __gnu_cxx::_verbose_terminate_handler() _ZN9__gnu_cxx27__verbose_terminate_handlerEv; + # new / delete operators + _Znaj; + _ZnajRKSt9nothrow_t; + _Znwj; + _ZnwjRKSt9nothrow_t; + _ZdaPv; + _ZdaPvRKSt9nothrow_t; + _ZdlPv; + _ZdlPvRKSt9nothrow_t; + local: *; }; |