From b64a920bc9f5153463cff3607ac5e7b9f939b46d Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Thu, 17 Oct 2019 08:46:27 -0400 Subject: Enable CRYPTOPP_DISABLE_MIXED_ASM in config_asm.h --- config_ver.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'config_ver.h') diff --git a/config_ver.h b/config_ver.h index 7369f5ef..f61ac11c 100644 --- a/config_ver.h +++ b/config_ver.h @@ -24,6 +24,8 @@ #define CRYPTOPP_REVISION 0 #define CRYPTOPP_VERSION 830 +// Compiler version macros + #ifdef __GNUC__ # define CRYPTOPP_GCC_VERSION (__GNUC__ * 10000 + __GNUC_MINOR__ * 100 + __GNUC_PATCHLEVEL__) #endif @@ -33,6 +35,7 @@ #endif // Apple and LLVM's Clang. Apple Clang version 7.0 roughly equals LLVM Clang version 3.7 +// Also see https://gist.github.com/yamaya/2924292 #if defined(__clang__) && defined(__apple_build_version__) # define CRYPTOPP_APPLE_CLANG_VERSION (__clang_major__ * 10000 + __clang_minor__ * 100 + __clang_patchlevel__) #elif defined(__clang__) -- cgit v1.2.1