You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
should that only be added for arm or is it save for other arches?
I think that it is safe for all arches but not the correct thing to do.
I should have also said that I'm using musl.
Anyway, the library does not work at all on arm because there is no
symbol _Unwind_GetGR in libgcc_s.so. <unwind.h> has
```
#define _Unwind_GetIP(context) \
(_Unwind_GetGR (context, 15) & ~(_Unwind_Word)1)
```
with
gcc version 4.9.3 (Gentoo Hardened 4.9.3-r99 p1.2, pie-0.6.3)
Adding "-lgcc_eh" makes it compile.
The text was updated successfully, but these errors were encountered: