Enable SSSE3 and SSE4 for SIMON and SPECK on Solaris with SunCC 5.13 and above

pull/704/head
Jeffrey Walton 2018-08-17 09:02:24 -04:00
parent 18bfe2a50a
commit 25116f5aae
No known key found for this signature in database
GPG Key ID: B36AB348921B1838
2 changed files with 2 additions and 2 deletions

View File

@ -31,7 +31,7 @@
// Yet another SunStudio/SunCC workaround. Failed self tests
// in SSE code paths on i386 for SunStudio 12.3 and below.
#if defined(__SUNPRO_CC)
#if defined(__SUNPRO_CC) && (__SUNPRO_CC <= 0x5120)
# undef CRYPTOPP_SIMON64_ADVANCED_PROCESS_BLOCKS
# undef CRYPTOPP_SIMON128_ADVANCED_PROCESS_BLOCKS
#endif

View File

@ -31,7 +31,7 @@
// Yet another SunStudio/SunCC workaround. Failed self tests
// in SSE code paths on i386 for SunStudio 12.3 and below.
#if defined(__SUNPRO_CC)
#if defined(__SUNPRO_CC) && (__SUNPRO_CC <= 0x5120)
# undef CRYPTOPP_SPECK64_ADVANCED_PROCESS_BLOCKS
# undef CRYPTOPP_SPECK128_ADVANCED_PROCESS_BLOCKS
#endif