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
/root/mingw-woarm64-build/code/gcc/libgcc/unwind-c.c:46:1: error: ‘parse_lsda_header’ defined but not used [-Werror=unused-function]
46 | parse_lsda_header (struct _Unwind_Context *context, const unsigned char *p,
| ^~~~~~~~~~~~~~~~~
Workaround
The current workaround is to add -Wno-error=unused-function to libgcc/config/aarch64/t-aarch64.
The text was updated successfully, but these errors were encountered:
Blackhex
changed the title
libgcc/unwind-c.c:46:1: error: ‘parse_lsda_header’ defined but not used
GCC: libgcc/unwind-c.c:46:1: error: ‘parse_lsda_header’ defined but not usedJan 5, 2025
Recent GCC commit Windows-on-ARM-Experiments/gcc-woarm64@71c7b44 added
-Werror
when buildinglibgcc
and it fails on this error:Issue
Workaround
The current workaround is to add
-Wno-error=unused-function
tolibgcc/config/aarch64/t-aarch64
.The text was updated successfully, but these errors were encountered: