mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2025-01-11 17:04:19 +01:00
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
This commit is contained in:
parent
cf7aca24f7
commit
523f54dd4a
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=236177
@ -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:
|
||||
*;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user