Browse Source

Disable Salsa20 SSE on MinGW 32-bit compiler

pull/2/head
staphen 4 years ago
parent
commit
7f026edea7
No known key found for this signature in database
GPG Key ID: E6D757EEF0CE235F
  1. 2
      node/Salsa20.hpp

2
node/Salsa20.hpp

@ -15,7 +15,7 @@
#include "Constants.hpp"
#include "Utils.hpp"
#if (!defined(ZT_SALSA20_SSE)) && (defined(__SSE2__) || defined(__WINDOWS__))
#if (!defined(ZT_SALSA20_SSE)) && (defined(__SSE2__) || (defined(__WINDOWS__) && !defined(__MINGW32__)))
#define ZT_SALSA20_SSE 1
#endif

Loading…
Cancel
Save