X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2FMakefile;h=f700a4441e4f55d141645bb494cb1a8ee4cdd36a;hp=335c6d8c9000085177b468a091843f512a72a3c3;hb=c1b60269a26b2ba1c8882b8f382f0e3e435c1962;hpb=f98385e1297a5d503e4ff933cdadc882465a1e6c diff --git a/src/Makefile b/src/Makefile index 335c6d8c..f700a444 100644 --- a/src/Makefile +++ b/src/Makefile @@ -24,7 +24,7 @@ EXE = stockfish -OBJS = bitboard.o pawns.o material.o endgame.o evaluate.o main.o \ +OBJS = application.o bitboard.o pawns.o material.o endgame.o evaluate.o main.o \ misc.o move.o movegen.o history.o movepick.o search.o piece.o \ position.o direction.o tt.o value.o uci.o ucioption.o \ mersenne.o book.o bitbase.o san.o benchmark.o @@ -91,15 +91,15 @@ CXXFLAGS += -wd383,869,981 # CXXFLAGS += -mdynamic-no-pic -no-prec-div -ipo -static -xP -# Profiler guided optimization with the Intel C++ compiler. To use it, first +# Profiler guided optimization with the Intel C++ compiler v11. To use it, first # create the directory ./profdata if it does not already exist, and delete its # contents if it does exist. Then compile with -prof_gen, and run the # resulting binary for a while (for instance, do ./stockfish bench 128 1, and # wait 15 minutes for the benchmark to complete). Then do a 'make clean', and # recompile with -prof_use. -# CXXFLAGS += -prof_gen -prof_dir profdata -# CXXFLAGS += -prof_use -prof_dir ./profdata +# CXXFLAGS += -prof-gen -prof-dir./profdata +# CXXFLAGS += -prof-use -ipo -prof_dir./profdata # Profiler guided optimization with GCC. I've never been able to make this