mirror of
https://github.com/shadps4-emu/ext-cryptopp.git
synced 2024-11-23 09:59:42 +00:00
Silence GCC warnings in BLAKE2
This commit is contained in:
parent
3bdcb5b8e0
commit
a830b24e7a
@ -58,6 +58,11 @@
|
||||
# include "ppc_simd.h"
|
||||
#endif
|
||||
|
||||
#if defined(CRYPTOPP_GCC_DIAGNOSTIC_AVAILABLE)
|
||||
/* Ignore "warning: vec_lvsl is deprecated..." */
|
||||
# pragma GCC diagnostic ignored "-Wdeprecated"
|
||||
#endif
|
||||
|
||||
// Squash MS LNK4221 and libtool warnings
|
||||
extern const char BLAKE2B_SIMD_FNAME[] = __FILE__;
|
||||
|
||||
|
@ -68,6 +68,11 @@
|
||||
# include "ppc_simd.h"
|
||||
#endif
|
||||
|
||||
#if defined(CRYPTOPP_GCC_DIAGNOSTIC_AVAILABLE)
|
||||
/* Ignore "warning: vec_lvsl is deprecated..." */
|
||||
# pragma GCC diagnostic ignored "-Wdeprecated"
|
||||
#endif
|
||||
|
||||
// Squash MS LNK4221 and libtool warnings
|
||||
extern const char BLAKE2S_SIMD_FNAME[] = __FILE__;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user