diff options
author | Matthias Schiffer <mschiffer@universe-factory.net> | 2013-12-26 05:45:13 +0100 |
---|---|---|
committer | Matthias Schiffer <mschiffer@universe-factory.net> | 2013-12-26 05:45:13 +0100 |
commit | 6709236699a6ddac0d8ab6b3ffc2ba5faf8315c5 (patch) | |
tree | 92255e3e0d3f19f12ec27d4291082703ee8fcfec /src/crypto/mac/ghash/pclmulqdq/CMakeLists.txt | |
parent | 50639c9c2e489b13c615b5ffa9cb21f58ddc2f22 (diff) | |
download | fastd-6709236699a6ddac0d8ab6b3ffc2ba5faf8315c5.tar fastd-6709236699a6ddac0d8ab6b3ffc2ba5faf8315c5.zip |
Check if the compiler supports -mpclmul
Diffstat (limited to 'src/crypto/mac/ghash/pclmulqdq/CMakeLists.txt')
-rw-r--r-- | src/crypto/mac/ghash/pclmulqdq/CMakeLists.txt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/crypto/mac/ghash/pclmulqdq/CMakeLists.txt b/src/crypto/mac/ghash/pclmulqdq/CMakeLists.txt index a11ad02..59bc09d 100644 --- a/src/crypto/mac/ghash/pclmulqdq/CMakeLists.txt +++ b/src/crypto/mac/ghash/pclmulqdq/CMakeLists.txt @@ -1,4 +1,8 @@ if(ARCH_X86 OR ARCH_X86_64) + if(NOT HAVE_PCLMUL) + message(FATAL_ERROR "WITH_MAC_GHASH_PCLMULQDQ enabled, but there is no compiler support for -mpclmul") + endif(NOT HAVE_PCLMUL) + fastd_mac_impl(ghash pclmulqdq ghash_pclmulqdq.c ghash_pclmulqdq_impl.c |