From f13e569f84cf897b0d1a5ce3f403e5f650005e19 Mon Sep 17 00:00:00 2001 From: Frederik Wedel-Heinen Date: Wed, 25 Sep 2024 17:06:06 +0200 Subject: [PATCH] Adds sha3 to arm compile options which is needed for ios compilation. Signed-off-by: Frederik Wedel-Heinen --- .CMake/compiler_opts.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.CMake/compiler_opts.cmake b/.CMake/compiler_opts.cmake index b343311033..6314c67f0b 100644 --- a/.CMake/compiler_opts.cmake +++ b/.CMake/compiler_opts.cmake @@ -55,7 +55,7 @@ if(CMAKE_C_COMPILER_ID MATCHES "Clang|GNU") else() # Assume sensible default like -march=x86-64, -march=armv8-a, etc. if(ARCH_ARM64v8) - set(OQS_OPT_FLAG "-march=armv8-a+crypto") + set(OQS_OPT_FLAG "-march=armv8-a+crypto+sha3") else() set(OQS_OPT_FLAG "") endif()