mirror of
https://github.com/opelly27/Stockfish.git
synced 2026-05-20 05:07:46 +00:00
Fix popcnt option in makefile
This commit is contained in:
+7
-1
@@ -394,7 +394,13 @@ endif
|
|||||||
|
|
||||||
### 3.6 popcnt
|
### 3.6 popcnt
|
||||||
ifeq ($(popcnt),yes)
|
ifeq ($(popcnt),yes)
|
||||||
CXXFLAGS += -DUSE_POPCNT
|
ifeq ($(arch),$(filter $(arch),ppc64 armv8-a))
|
||||||
|
CXXFLAGS += -DUSE_POPCNT
|
||||||
|
else ifeq ($(comp),icc)
|
||||||
|
CXXFLAGS += -msse3 -DUSE_POPCNT
|
||||||
|
else
|
||||||
|
CXXFLAGS += -msse3 -mpopcnt -DUSE_POPCNT
|
||||||
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifeq ($(avx2),yes)
|
ifeq ($(avx2),yes)
|
||||||
|
|||||||
Reference in New Issue
Block a user