revert to previous implementation of __aeabi_atexit() since the new one seems to crash a static ICU String destructor.
I don't have the time to investigate why right now, so a revert is preferred. Damn...
This commit is contained in:
parent
3e16f84fca
commit
d386afcc41
@ -37,7 +37,8 @@ void* __dso_handle = 0;
|
||||
int __attribute__((weak))
|
||||
__aeabi_atexit (void *object, void (*destructor) (void *), void *dso_handle)
|
||||
{
|
||||
return __cxa_atexit(destructor, object, dso_handle);
|
||||
return 0;
|
||||
//return __cxa_atexit(destructor, object, dso_handle);
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user