VeraCrypt
aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMounir IDRASSI <mounir.idrassi@idrix.fr>2025-01-18 16:37:26 +0100
committerMounir IDRASSI <mounir.idrassi@idrix.fr>2025-01-18 16:37:26 +0100
commitcca323964ee66789638f7d41b7bfce69a596f553 (patch)
treeb879160aaaff329bc4448b7f9a88dee7925481d2 /src
parentff63e5aad0ada475b5751db19d6f553193c04673 (diff)
downloadVeraCrypt-cca323964ee66789638f7d41b7bfce69a596f553.tar.gz
VeraCrypt-cca323964ee66789638f7d41b7bfce69a596f553.zip
Linux: Add missing header in ARM64 build. Add .oarmv8crypto to .gitignore
Diffstat (limited to 'src')
-rw-r--r--src/Crypto/cpu.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/Crypto/cpu.c b/src/Crypto/cpu.c
index 85278a92..0f1ba54d 100644
--- a/src/Crypto/cpu.c
+++ b/src/Crypto/cpu.c
@@ -470,12 +470,14 @@ void DisableCPUExtendedFeatures ()
#endif
#if CRYPTOPP_BOOL_ARMV8
-
-volatile int g_hasAESARM = 0;
-
+#if defined(__linux__) && defined(__aarch64__)
+#include <sys/auxv.h>
#ifndef HWCAP_AES
# define HWCAP_AES (1 << 3)
#endif
+#endif
+
+volatile int g_hasAESARM = 0;
inline int CPU_QueryAES()
{