X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2FMakefile;h=3963e5589d6fdfc85a87dd230ff0d3ef048830fc;hp=1388f465fd49a0c00e1a52c3bec993aebfafe8b1;hb=8d65fcc0f3b26beb19cc838ff2ad0c78ac289120;hpb=dae7cacd3bec86bbe35796825942335c5078f950 diff --git a/src/Makefile b/src/Makefile index 1388f465..3963e558 100644 --- a/src/Makefile +++ b/src/Makefile @@ -80,6 +80,7 @@ help: @echo "Makefile options:" @echo "" @echo "make > Default: Compiler = g++" + @echo "make gcc-popcnt > Compiler = g++ + popcnt-support" @echo "make icc > Compiler = icpc" @echo "make icc-profile > Compiler = icpc + automatic pgo-build" @echo "make icc-profile-popcnt > Compiler = icpc + automatic pgo-build + popcnt-support" @@ -108,6 +109,13 @@ gcc: CXXFLAGS="$(GCCFLAGS)" \ all +gcc-popcnt: + $(MAKE) \ + CXX='g++' \ + CXXFLAGS="$(GCCFLAGS) -DUSE_POPCNT" \ + all + + icc: $(MAKE) \ CXX='icpc' \