ARM: add a couple of ARM specific stubs

These are ARM EABI specific exception handling functions, referenced
from the gcc c++ libraries.
This commit is contained in:
Ithamar R. Adema
2014-08-30 21:10:27 +02:00
parent 196675be76
commit cbe5cf641d
+35
View File
@@ -69,6 +69,41 @@ __cxa_finalize(void* dsoHandle)
{
}
/* ARM */
extern "C" void
__aeabi_unwind_cpp_pr0(void)
{
}
extern "C" void
__aeabi_unwind_cpp_pr1(void)
{
}
extern "C" void
__aeabi_unwind_cpp_pr2(void)
{
}
extern "C" void
_Unwind_Complete(void)
{
}
extern "C" void
_Unwind_VRS_Set(void)
{
}
extern "C" void
_Unwind_VRS_Get(void)
{
}
extern "C" void
__gnu_unwind_frame(void)
{
}
#endif