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
└─▪ make
In file included from uECC_vli.h:7,
from uECC.c:4:
types.h:98:18: error: ISO C does not support ‘__int128’ types [-Werror=pedantic]
98 | typedef unsigned __int128 uECC_dword_t;
| ^~~~~~~~
cc1: all warnings being treated as errors
make: *** [makefile:129: uECC.o] Error 1
└─▪ cat /etc/issue
Ubuntu 22.04.4 LTS \n \l
┌─[±][master ?:3 ✗][micro-ecc]
└─▪ gcc --version
gcc (Ubuntu 11.4.0-1ubuntu1~22.04) 11.4.0
Copyright (C) 2021 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
If the platform supports
__int128
, GCC throws the following warning if the-Wpedantic
flag is set.Here are three ways to avoid the GCC warning
__attribute__((mode(TI)))
(similar to mbedtls)__extension__
GCC Documentation-Wpedantic
at this lineThe text was updated successfully, but these errors were encountered: