1
0
mirror of https://github.com/GOSTSec/sgminer synced 2025-01-08 22:08:02 +00:00

Fixed WIN32 compilation with byteswap.

This commit is contained in:
Ycros 2011-07-09 12:39:08 +10:00
parent c9bbaec3b2
commit a5fb85ef84

View File

@ -57,7 +57,7 @@ void *alloca (size_t);
#define WANT_X8664_SSE2 1
#endif
#if ((__GNUC__ > 4) || (__GNUC__ == 4 && __GNUC_MINOR__ >= 3))
#if !defined(WIN32) && ((__GNUC__ > 4) || (__GNUC__ == 4 && __GNUC_MINOR__ >= 3))
#define WANT_BUILTIN_BSWAP
#else
#if HAVE_BYTESWAP_H