Skip to content

Commit

Permalink
Disable unreliable assertion for external frame unwinding.
Browse files Browse the repository at this point in the history
Broken on Fedora/ARM64. Reported by Yichun Zhang.
  • Loading branch information
Mike Pall committed Jun 25, 2021
1 parent 95140c5 commit e957737
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/lj_err.c
Original file line number Diff line number Diff line change
Expand Up @@ -482,7 +482,9 @@ void lj_err_verify(void)
{
struct dwarf_eh_bases ehb;
lj_assertX(_Unwind_Find_FDE((void *)lj_err_throw, &ehb), "broken build: external frame unwinding enabled, but missing -funwind-tables");
/* Check disabled, because of broken Fedora/ARM64. See #722.
lj_assertX(_Unwind_Find_FDE((void *)_Unwind_RaiseException, &ehb), "broken build: external frame unwinding enabled, but system libraries have no unwind tables");
*/
}
#endif

Expand Down

0 comments on commit e957737

Please sign in to comment.