From: Marco Costalba Date: Sat, 6 Oct 2012 10:25:13 +0000 (+0200) Subject: Fix mingw compile with ARCH=x86-64 X-Git-Url: http://winboard.nl/cgi-bin?a=commitdiff_plain;h=d777c4d78983ee631a90eb5b98a6608f728bc552;p=fairystockfish.git Fix mingw compile with ARCH=x86-64 When using the Makefile (as for the mingw case), IS_64BIT and USE_BSFQ are already set with ARCH=x86-64 and do not need to be redefined. No functional change. Signed-off-by: Marco Costalba --- diff --git a/src/types.h b/src/types.h index ce73cab..59d051e 100644 --- a/src/types.h +++ b/src/types.h @@ -41,7 +41,7 @@ #include "platform.h" -#if defined(_WIN64) +#if defined(_WIN64) && !defined(IS_64BIT) # include // MSVC popcnt and bsfq instrinsics # define IS_64BIT # define USE_BSFQ