Add std::terminate to ldso whitelist.

Due to recent changes on the Fiasco.OC platform, when building ldso
applications for this platform the std::terminate function is needed
by the ~Ipc_server destructor. So we've to add it to ldso's whitelist.
This commit is contained in:
Stefan Kalkowski 2012-05-10 15:42:41 +02:00 committed by Norman Feske
parent 0971b47b11
commit 19bad919a6
1 changed files with 2 additions and 0 deletions

View File

@ -50,6 +50,8 @@
/* GNU verbose terminate handler */
extern "C++" { __gnu_cxx::__verbose_terminate_handler*; };
extern "C++" { std::terminate*; };
/* x86 */
__cxa*;
_Unwind_Resume;