mirror of
https://github.com/opelly27/Stockfish.git
synced 2026-05-20 12:07:43 +00:00
Fixed a bug that Makefile specifies -mpopcnt for armv8-a.
This commit is contained in:
+4
-2
@@ -442,8 +442,10 @@ endif
|
|||||||
### 3.6 popcnt
|
### 3.6 popcnt
|
||||||
ifeq ($(popcnt),yes)
|
ifeq ($(popcnt),yes)
|
||||||
CXXFLAGS += -DUSE_POPCNT
|
CXXFLAGS += -DUSE_POPCNT
|
||||||
ifeq ($(comp),$(filter $(comp),gcc clang mingw msys2))
|
ifneq ($(arch),$(filter $(arch),ppc64 armv8-a))
|
||||||
CXXFLAGS += -mpopcnt
|
ifeq ($(comp),$(filter $(comp),gcc clang mingw msys2))
|
||||||
|
CXXFLAGS += -mpopcnt
|
||||||
|
endif
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user