]> git.sesse.net Git - stockfish/blobdiff - src/Makefile
Fix some warnings with Intel C++ compiler
[stockfish] / src / Makefile
index c70bd782ba04dc4d3eebd7f94911984319afdf92..92072cc1b07eb4b93ebec9bd1734043b8de72488 100644 (file)
@@ -30,7 +30,7 @@ EXE = stockfish
 PREFIX = /usr/local
 # Haiku has a non-standard filesystem layout
 ifeq ($(UNAME),Haiku)
-       PREFIX=/boot/common
+       PREFIX=/boot/system/non-packaged
 endif
 BINDIR = $(PREFIX)/bin
 
@@ -285,7 +285,11 @@ endif
 
 ### 3.9 popcnt
 ifeq ($(popcnt),yes)
-       CXXFLAGS += -msse3 -DUSE_POPCNT
+       ifeq ($(comp),icc)
+               CXXFLAGS += -msse3 -DUSE_POPCNT
+       else
+               CXXFLAGS += -msse3 -mpopcnt -DUSE_POPCNT
+       endif
 endif
 
 ### 3.10 pext