From: Damjan Marion Date: Wed, 19 May 2021 13:13:40 +0000 (+0200) Subject: build: fix crypto_native compile flags check X-Git-Tag: v21.10-rc0~47 X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=188296ae59c7f244da2f0c78657512b933e17fb9;p=vpp.git build: fix crypto_native compile flags check Type: fix Change-Id: I338036a3cac74fd5f9772bcf7685ee6970653ddb Signed-off-by: Damjan Marion --- 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)