mirror of
https://github.com/shadps4-emu/ext-cryptopp.git
synced 2025-02-12 00:07:47 +00:00
Fix SunCC crash when compiling GCM
This commit is contained in:
parent
2d5ed51ca9
commit
7c667bc71e
@ -19,9 +19,9 @@
|
||||
# undef CRYPTOPP_SSE2_ASM_AVAILABLE
|
||||
#endif
|
||||
|
||||
// SunCC 12.3 and 12.4 crash in GCM_Reduce_CLMUL
|
||||
// SunCC 12.3 - 12.5 crash in GCM_Reduce_CLMUL
|
||||
// http://github.com/weidai11/cryptopp/issues/226
|
||||
#if defined(__SUNPRO_CC) && (__SUNPRO_CC <= 0x5130)
|
||||
#if defined(__SUNPRO_CC) && (__SUNPRO_CC <= 0x5140)
|
||||
# undef CRYPTOPP_CLMUL_AVAILABLE
|
||||
#endif
|
||||
|
||||
|
4
gcm.cpp
4
gcm.cpp
@ -21,9 +21,9 @@
|
||||
# undef CRYPTOPP_SSE2_ASM_AVAILABLE
|
||||
#endif
|
||||
|
||||
// SunCC 12.3 and 12.4 crash in GCM_Reduce_CLMUL
|
||||
// SunCC 12.3 - 12.5 crash in GCM_Reduce_CLMUL
|
||||
// http://github.com/weidai11/cryptopp/issues/226
|
||||
#if defined(__SUNPRO_CC) && (__SUNPRO_CC <= 0x5130)
|
||||
#if defined(__SUNPRO_CC) && (__SUNPRO_CC <= 0x5140)
|
||||
# undef CRYPTOPP_CLMUL_AVAILABLE
|
||||
#endif
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user