X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2FMakefile;h=5fa29c0a01a35226c421de301a134210be264c1d;hb=dc286d2673ef334c6bab0c4244a49a1b01e63cdc;hp=ff3405f7883c08e2cc379ca76d6bf6c312629bd4;hpb=fd12e8cb239180607559bb805e233f7ea704a67c;p=stockfish diff --git a/src/Makefile b/src/Makefile index ff3405f7..5fa29c0a 100644 --- a/src/Makefile +++ b/src/Makefile @@ -28,6 +28,7 @@ EXE = stockfish ### ========================================================================== GCCFLAGS = -O3 -msse ICCFLAGS = -fast -msse +ICCFLAGS-OSX = -fast -mdynamic-no-pic ### ========================================================================== @@ -35,6 +36,15 @@ ICCFLAGS = -fast -msse ### ========================================================================== GCCFLAGS += -DNDEBUG ICCFLAGS += -DNDEBUG +ICCFLAGS-OSX += -DNDEBUG + + +### ========================================================================== +### Enable/disable compile for a big-endian CPU, disabled by default +### ========================================================================== +GCCFLAGS += -DNBIGENDIAN +ICCFLAGS += -DNBIGENDIAN +ICCFLAGS-OSX += -DNBIGENDIAN ### ========================================================================== @@ -45,8 +55,9 @@ PGOBENCH = ./$(EXE) bench 32 1 10 default depth ### General compiler settings. Do not change -GCCFLAGS += -g -Wall -fno-exceptions -fno-rtti -fno-strict-aliasing -ICCFLAGS += -g -Wall -fno-exceptions -fno-rtti -fno-strict-aliasing -wd383,869,981,10187,10188,11505,11503 +GCCFLAGS += -g -Wall -fno-exceptions -fno-rtti +ICCFLAGS += -g -Wall -fno-exceptions -fno-rtti -wd383,869,981,10187,10188,11505,11503 +ICCFLAGS-OSX += -g -Wall -fno-exceptions -fno-rtti -wd383,869,981,10187,10188,11505,11503 ### General linker settings. Do not change @@ -75,6 +86,10 @@ help: @echo "make osx-ppc64 > PPC-Mac OS X 64 bit. Compiler = g++" @echo "make osx-x86 > x86-Mac OS X 32 bit. Compiler = g++" @echo "make osx-x86_64 > x86-Mac OS X 64 bit. Compiler = g++" + @echo "make osx-icc32 > x86-Mac OS X 32 bit. Compiler = icpc" + @echo "make osx-icc64 > x86-Mac OS X 64 bit. Compiler = icpc" + @echo "make osx-icc32-profile > OSX 32 bit. Compiler = icpc + automatic pgo-build" + @echo "make osx-icc64-profile > OSX 64 bit. Compiler = icpc + automatic pgo-build" @echo "make strip > Strip executable" @echo "make clean > Clean up" @echo "" @@ -157,6 +172,88 @@ osx-x86_64: CXXFLAGS+='-arch x86_64' \ LDFLAGS+='-arch x86_64' \ all + +osx-icc32: + $(MAKE) \ + CXX='icpc' \ + CXXFLAGS="$(ICCFLAGS-OSX)" \ + CXXFLAGS+='-arch i386' \ + LDFLAGS+='-arch i386' \ + all + +osx-icc64: + $(MAKE) \ + CXX='icpc' \ + CXXFLAGS="$(ICCFLAGS-OSX)" \ + CXXFLAGS+='-arch x86_64' \ + LDFLAGS+='-arch x86_64' \ + all + +osx-icc32-profile-make: + $(MAKE) \ + CXX='icpc' \ + CXXFLAGS="$(ICCFLAGS-OSX)" \ + CXXFLAGS+='-arch i386' \ + CXXFLAGS+='-prof_gen -prof_dir ./profdir' \ + LDFLAGS+='-arch i386' \ + all + +osx-icc32-profile-use: + $(MAKE) \ + CXX='icpc' \ + CXXFLAGS="$(ICCFLAGS-OSX)" \ + CXXFLAGS+='-arch i386' \ + CXXFLAGS+='-prof_use -prof_dir ./profdir' \ + LDFLAGS+='-arch i386' \ + all + +osx-icc32-profile: + @rm -rf profdir + @mkdir profdir + @touch *.cpp *.h + $(MAKE) osx-icc32-profile-make + @echo "" + @echo "Running benchmark for pgo-build ..." + @$(PGOBENCH) > /dev/null + @echo "Benchmark finished. Build final executable now ..." + @echo "" + @touch *.cpp *.h + $(MAKE) osx-icc32-profile-use + @rm -rf profdir bench.txt + +osx-icc64-profile-make: + $(MAKE) \ + CXX='icpc' \ + CXXFLAGS="$(ICCFLAGS-OSX)" \ + CXXFLAGS+='-arch x86_64' \ + CXXFLAGS+='-prof_gen -prof_dir ./profdir' \ + LDFLAGS+='-arch x86_64' \ + all + +osx-icc64-profile-use: + $(MAKE) \ + CXX='icpc' \ + CXXFLAGS="$(ICCFLAGS-OSX)" \ + CXXFLAGS+='-arch x86_64' \ + CXXFLAGS+='-prof_use -prof_dir ./profdir' \ + LDFLAGS+='-arch x86_64' \ + all + +osx-icc64-profile: + @rm -rf profdir + @mkdir profdir + @touch *.cpp *.h + $(MAKE) osx-icc64-profile-make + @echo "" + @echo "Running benchmark for pgo-build ..." + @$(PGOBENCH) > /dev/null + @echo "Benchmark finished. Build final executable now ..." + @echo "" + @touch *.cpp *.h + $(MAKE) osx-icc64-profile-use + @rm -rf profdir bench.txt + + strip: strip $(EXE)