From 188296ae59c7f244da2f0c78657512b933e17fb9 Mon Sep 17 00:00:00 2001 From: Damjan Marion Date: Wed, 19 May 2021 15:13:40 +0200 Subject: build: fix crypto_native compile flags check Type: fix Change-Id: I338036a3cac74fd5f9772bcf7685ee6970653ddb Signed-off-by: Damjan Marion --- src/plugins/crypto_native/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/plugins/crypto_native/CMakeLists.txt b/src/plugins/crypto_native/CMakeLists.txt index e71df3d6a98..688a8c95baf 100644 --- a/src/plugins/crypto_native/CMakeLists.txt +++ b/src/plugins/crypto_native/CMakeLists.txt @@ -14,10 +14,10 @@ if(CMAKE_SYSTEM_PROCESSOR MATCHES "amd64.*|x86_64.*|AMD64.*") list(APPEND VARIANTS "slm\;-march=silvermont") list(APPEND VARIANTS "hsw\;-march=haswell") - if(compiler_flag_march_skylake_avx512 AND compiler_flag_mprefer_vector_width) + if(compiler_flag_march_skylake_avx512 AND compiler_flag_mprefer_vector_width_256) list(APPEND VARIANTS "skx\;-march=skylake-avx512 -mprefer-vector-width=256") endif() - if(compiler_flag_march_icelake_client AND compiler_flag_mprefer_vector_width) + if(compiler_flag_march_icelake_client AND compiler_flag_mprefer_vector_width_512) list(APPEND VARIANTS "icl\;-march=icelake-client -mprefer-vector-width=512") endif() set (COMPILE_FILES aes_cbc.c aes_gcm.c) -- cgit 1.2.3-korg