summaryrefslogtreecommitdiff
path: root/lsh256.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lsh256.cpp')
-rw-r--r--lsh256.cpp24
1 files changed, 15 insertions, 9 deletions
diff --git a/lsh256.cpp b/lsh256.cpp
index 47ab9d4c..edf7ae3a 100644
--- a/lsh256.cpp
+++ b/lsh256.cpp
@@ -31,22 +31,28 @@
// Only enable the intrinsics for 64-bit machines
#ifndef CRYPTOPP_DISABLE_ASM
# if (defined(__SSE2__) && defined(__amd64__)) || (defined(_MSC_VER) && defined(_M_X64))
-# define CRYPTOPP_LSH256_SSE2_AVAILABLE 1
+# define CRYPTOPP_LSH512_SSE2_AVAILABLE 1
# endif
-# if (defined(__SSSE3__) && defined(__amd64__))
-# define CRYPTOPP_LSH256_SSSE3_AVAILABLE 1
+# if defined(__SSSE3__) && defined(__amd64__)
+# define CRYPTOPP_LSH512_SSSE3_AVAILABLE 1
# endif
-# if (defined(__XOP__) && defined(__amd64__))
-# define CRYPTOPP_LSH256_XOP_AVAILABLE 1
+# if defined(__XOP__) && defined(__amd64__)
+# define CRYPTOPP_LSH512_XOP_AVAILABLE 1
# endif
-# if (defined(__AVX__) && defined(__amd64__))
-# define CRYPTOPP_LSH256_AVX_AVAILABLE 1
+# if defined(__AVX__) && defined(__amd64__)
+# define CRYPTOPP_LSH512_AVX_AVAILABLE 1
# endif
-# if (defined(__AVX2__) && defined(__amd64__))
-# define CRYPTOPP_LSH256_AVX2_AVAILABLE 1
+# if defined(__AVX2__) && defined(__amd64__)
+# define CRYPTOPP_LSH512_AVX2_AVAILABLE 1
# endif
#endif
+// Apple and broken compile with -march=native when AVX2 is available.
+// https://travis-ci.org/github/noloader/cryptopp/jobs/767844407
+#if defined(__AVX2__) && defined(CRYPTOPP_APPLE_CLANG_VERSION))
+# undef CRYPTOPP_LSH256_AVX2_AVAILABLE
+#endif
+
#if defined(CRYPTOPP_LSH256_SSE2_AVAILABLE)
# include <emmintrin.h>
#endif