blob: f96f6805bae3ea23c5422a0353623bac6a35929c (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
if(ARCH_X86 OR ARCH_X86_64)
fastd_mac_impl(ghash pclmulqdq
ghash_pclmulqdq.c
ghash_pclmulqdq_impl.c
)
fastd_mac_impl_compile_flags(ghash pclmulqdq ghash_pclmulqdq_impl.c "-mssse3 -mpclmul")
if(WITH_MAC_GHASH_PCLMULQDQ AND NOT HAVE_PCLMUL)
message(FATAL_ERROR "WITH_MAC_GHASH_PCLMULQDQ enabled, but there is no compiler support for -mpclmul")
endif(WITH_MAC_GHASH_PCLMULQDQ AND NOT HAVE_PCLMUL)
endif(ARCH_X86 OR ARCH_X86_64)
|