We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 40e43ea commit def5cf2Copy full SHA for def5cf2
src/headers/tomcrypt_cfg.h
@@ -246,6 +246,8 @@ typedef unsigned long ltc_mp_digit;
246
#undef LTC_FAST
247
#define LTC_NO_AES_NI
248
#define LTC_NO_BSWAP
249
+ #define LTC_NO_CLZL
250
+ #define LTC_NO_CTZL
251
#define LTC_NO_ROLC
252
#define LTC_NO_ROTATE
253
#endif
@@ -296,11 +298,11 @@ typedef unsigned long ltc_mp_digit;
296
298
#define LTC_HAVE_ROTATE_BUILTIN
297
299
300
-#if __has_builtin(__builtin_clzl)
301
+#if !defined(LTC_NO_CLZL) && __has_builtin(__builtin_clzl)
302
#define LTC_HAVE_CLZL_BUILTIN
303
304
-#if __has_builtin(__builtin_ctzl)
305
+#if !defined(LTC_NO_CTZL) && __has_builtin(__builtin_ctzl)
306
#define LTC_HAVE_CTZL_BUILTIN
307
308
0 commit comments