0a8b560731a99cea8279b434f2aea1adc8db5e71
[vpp.git] / src / plugins / crypto_ia32 / CMakeLists.txt
1 # Copyright (c) 2018 Cisco and/or its affiliates.
2 # Licensed under the Apache License, Version 2.0 (the "License");
3 # you may not use this file except in compliance with the License.
4 # You may obtain a copy of the License at:
5 #
6 #     http://www.apache.org/licenses/LICENSE-2.0
7 #
8 # Unless required by applicable law or agreed to in writing, software
9 # distributed under the License is distributed on an "AS IS" BASIS,
10 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11 # See the License for the specific language governing permissions and
12 # limitations under the License.
13
14 if(NOT CMAKE_SYSTEM_PROCESSOR MATCHES "amd64.*|x86_64.*|AMD64.*")
15   return()
16 endif()
17
18 add_vpp_plugin(crypto_ia32 SOURCES main.c)
19
20 list(APPEND VARIANTS "sse42\;-march=silvermont")
21 list(APPEND VARIANTS "avx2\;-march=core-avx2")
22 if(compiler_flag_march_skylake_avx512)
23   list(APPEND VARIANTS "avx512\;-march=skylake-avx512")
24 endif()
25 if(compiler_flag_march_icelake_client)
26   list(APPEND VARIANTS "vaesni\;-march=icelake-client")
27 endif()
28
29 foreach(VARIANT ${VARIANTS})
30   list(GET VARIANT 0 v)
31   list(GET VARIANT 1 f)
32   set(l crypto_ia32_${v})
33   add_library(${l} OBJECT aes_cbc.c aes_gcm.c)
34   set_target_properties(${l} PROPERTIES POSITION_INDEPENDENT_CODE ON)
35   target_compile_options(${l} PUBLIC ${f} -Wall -fno-common -maes)
36   target_sources(crypto_ia32_plugin PRIVATE $<TARGET_OBJECTS:${l}>)
37 endforeach()