Based on suggestion from @noloader, don't split x86/x64 clang++ version detection. Just wait until clang++ is consistently working in both x86/x64.
parent
003e1988a5
commit
736f27295d
2
sha.cpp
2
sha.cpp
|
|
@ -44,7 +44,7 @@
|
|||
// Clang 3.3 integrated assembler crash on Linux
|
||||
// http://github.com/weidai11/cryptopp/issues/264
|
||||
// Clang 3.4.1 (x86) crash on FreeBSD 10.3. Clang 3.4.1 (x64) works fine.
|
||||
#if defined(CRYPTOPP_LLVM_CLANG_VERSION) && ((CRYPTOPP_LLVM_CLANG_VERSION < 30400) || CRYPTOPP_BOOL_X86 && (CRYPTOPP_LLVM_CLANG_VERSION < 30500))
|
||||
#if defined(CRYPTOPP_LLVM_CLANG_VERSION) && (CRYPTOPP_LLVM_CLANG_VERSION < 30500)
|
||||
# define CRYPTOPP_DISABLE_SHA_ASM
|
||||
#endif
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue