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
My workaround for now is simply to add -Wno-incompatible-pointer-types (or -Wno-error=incompatible-pointer-types?) to the LIBLWIP_CFLAGS line in lwip's Makefile.uk.
The text was updated successfully, but these errors were encountered:
When remaking my lwip-using unikernel on a new computer the build terminated on this error:
It appears that gcc version >= 14 will make
-Wincompatible-pointer-types
an error instead of warning by default: https://gcc.gnu.org/gcc-14/porting_to.htmlMy workaround for now is simply to add
-Wno-incompatible-pointer-types
(or-Wno-error=incompatible-pointer-types
?) to the LIBLWIP_CFLAGS line in lwip'sMakefile.uk
.The text was updated successfully, but these errors were encountered: