am 3e16f84f: Fix __aeabi_atexit to call __cxa_atexit properly. This function is defined by the C++ ABI for ARM document.
Merge commit '3e16f84fcad103c97a2df4a58948835277043569' * commit '3e16f84fcad103c97a2df4a58948835277043569': Fix __aeabi_atexit to call __cxa_atexit properly. This function is defined by the C++ ABI for ARM document.
This commit is contained in:
commit
3ccce08bf8
@ -28,6 +28,8 @@
|
|||||||
#include <stddef.h>
|
#include <stddef.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
|
extern int __cxa_atexit(void (*)(void*), void*, void* );
|
||||||
|
|
||||||
void* __dso_handle = 0;
|
void* __dso_handle = 0;
|
||||||
|
|
||||||
/* Make this a weak symbol to avoid a multiple definition error when linking
|
/* Make this a weak symbol to avoid a multiple definition error when linking
|
||||||
@ -35,8 +37,7 @@ void* __dso_handle = 0;
|
|||||||
int __attribute__((weak))
|
int __attribute__((weak))
|
||||||
__aeabi_atexit (void *object, void (*destructor) (void *), void *dso_handle)
|
__aeabi_atexit (void *object, void (*destructor) (void *), void *dso_handle)
|
||||||
{
|
{
|
||||||
//return __cxa_atexit(destructor, object, dso_handle);
|
return __cxa_atexit(destructor, object, dso_handle);
|
||||||
return 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user