]> git.sesse.net Git - stockfish/blobdiff - src/Makefile
Fix regression in move_to_san()
[stockfish] / src / Makefile
index 71aa7b30d195370738bcab3705f4385b7328b308..dea8db04675e66d26b21e4c755f91df217ae85e3 100644 (file)
@@ -32,7 +32,7 @@ PGOBENCH = ./$(EXE) bench 32 1 10 default depth
 
 ### Object files
 OBJS = benchmark.o bitbase.o bitboard.o book.o endgame.o evaluate.o main.o \
-       material.o misc.o move.o movegen.o movepick.o pawns.o position.o \
+       material.o misc.o movegen.o movepick.o notation.o pawns.o position.o \
        search.o thread.o timeman.o tt.o uci.o ucioption.o
 
 ### ==========================================================================
@@ -270,6 +270,7 @@ ifeq ($(optimize),yes)
        endif
 
        ifeq ($(comp),clang)
+               ### -O4 requires a linker that supports LLVM's LTO
                CXXFLAGS += -O3
 
                ifeq ($(os),osx)