aboutsummaryrefslogtreecommitdiff
path: root/gnu/lib/libsupc++/Version.map
Commit message (Collapse)AuthorAgeFilesLines
* libsupc++: Fix typo in symbol map.Pedro F. Giffuni2016-06-081-1/+1
| | | | | | | | | | | This went mostly unnoticed with the deprecation of the GNU toolchain in tier 1 platforms. Fix it now for the rest. PR: 169901 MFC after: 3 days Notes: svn path=/head/; revision=301570
* Fix some missing symbols in the libsupc++ Version.mapDavid Chisnall2013-06-161-0/+13
| | | | | | | MFC after: 1 week Notes: svn path=/head/; revision=251820
* Fix some symbol version mismatches between libstdc++ and libsupc++/libcxxrtDavid Chisnall2013-01-281-0/+29
| | | | | | | | | | | | | | | | | | | | that were causing the runtime and STL libraries to see different versions of various classes and functions when libstdc++ is used as a filter. Note: This changes the ABI for libcxxrt, but libcxxrt is currently only in -STABLE for testing and is not used by anything unless explicitly enabled by the end user. No default compiler configurations use it. libc++ will need to be recompiled after this change. make buildworld will do this automatically, but make in lib/libc++ will not necessarily work unless the new libcxxrt is installed first. PR: kern/171610, stand/175453 Reviewed by: kib MFC after: 1 week Notes: svn path=/head/; revision=246028
* Clean up some symbol versions for libsupc++ / libcxxrt.David Chisnall2012-06-111-13/+9
| | | | | | | | MFC after: 1 week Reviewed by: kan Notes: svn path=/head/; revision=236890
* Add mangled symbols for operator new / delete on 64-bit platforms.Dag-Erling Smørgrav2012-06-051-1/+9
| | | | | | | | Reported by: decke@ MFC after: 1 week Notes: svn path=/head/; revision=236614
* Correctly export operator new / delete for things linking against libsupc++ butDavid Chisnall2012-05-281-0/+10
| | | | | | | | | | | | | | 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 Notes: svn path=/head/; revision=236177
* Make libsupc++ build as a shared library and make libstdc++ a filter libraryDavid Chisnall2012-03-311-0/+137
for it. This allows people to swap out libsupc++ for libcxxrt easily, so we can begin the libstdc++ -> libc++ migration. Approved by: dim (mentor) Notes: svn path=/head/; revision=233749