Skip to content
Snippets Groups Projects
Commit 47edbd4f authored by Nick Mathewson's avatar Nick Mathewson :game_die:
Browse files

Fix build on 32-bit systems.

parent cb71c5dd
No related branches found
No related tags found
No related merge requests found
......@@ -10,6 +10,16 @@
#include "ed25519-donna-portable.h"
#include "orconfig.h"
#ifdef HAVE_CFLAG_WOVERLENGTH_STRINGS
/* Some of the ASM here is very long strings. */
#ifdef __clang__
#pragma clang diagnostic ignored "-Woverlength-strings"
#else
#pragma GCC diagnostic ignored "-Woverlength-strings"
#endif
#endif
#if defined(ED25519_SSE2)
#else
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment