1
0
mirror of https://github.com/PurpleI2P/i2pd.git synced 2025-01-18 20:59:57 +00:00

fixed non-x86 build

This commit is contained in:
orignal 2023-09-15 11:37:45 -04:00
parent 1e7feae0df
commit 918aa556ef

View File

@ -13,7 +13,7 @@
#define bit_AES (1 << 25)
#endif
#if (defined(__GNUC__) && __GNUC__ < 5)
#if (defined(__GNUC__) && __GNUC__ < 5 && (defined(__x86_64__) || defined(__i386__)))
#include <cpuid.h>
#endif