From 54bd81999007b467420acab780c704c91bc1b057 Mon Sep 17 00:00:00 2001 From: Mounir IDRASSI Date: Fri, 17 Jan 2025 00:58:54 +0100 Subject: Windows/Linux/macOS: implement AES hardware support on ARM64 (ARMv8) --- src/Mount/Mount.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'src/Mount/Mount.c') diff --git a/src/Mount/Mount.c b/src/Mount/Mount.c index c90e2bb3..f543f371 100644 --- a/src/Mount/Mount.c +++ b/src/Mount/Mount.c @@ -10132,7 +10132,11 @@ int WINAPI wWinMain (HINSTANCE hInstance, HINSTANCE hPrevInstance, wchar_t *lpsz VirtualLock (&defaultMountOptions, sizeof (defaultMountOptions)); VirtualLock (&szFileName, sizeof(szFileName)); - DetectX86Features (); +#ifndef _M_ARM64 + DetectX86Features(); +#else + DetectArmFeatures(); +#endif try { -- cgit v1.2.3