]> git.sesse.net Git - stockfish/blob - src/Makefile
Disable book during analysis
[stockfish] / src / Makefile
1 # Stockfish, a UCI chess playing engine derived from Glaurung 2.1
2 # Copyright (C) 2004-2008 Tord Romstad (Glaurung author)
3 # Copyright (C) 2008-2012 Marco Costalba, Joona Kiiski, Tord Romstad
4 #
5 # Stockfish is free software: you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation, either version 3 of the License, or
8 # (at your option) any later version.
9 #
10 # Stockfish is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 # GNU General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
17
18
19 ### ==========================================================================
20 ### Section 1. General Configuration
21 ### ==========================================================================
22
23 ### Executable name
24 EXE = stockfish
25
26 ### Installation dir definitions
27 PREFIX = /usr/local
28 BINDIR = $(PREFIX)/bin
29
30 ### Built-in benchmark for pgo-builds
31 PGOBENCH = ./$(EXE) bench 32 1 10 default depth
32
33 ### Object files
34 OBJS = benchmark.o bitbase.o bitboard.o book.o endgame.o evaluate.o main.o \
35         material.o misc.o move.o movegen.o movepick.o pawns.o position.o \
36         search.o thread.o timeman.o tt.o uci.o ucioption.o
37
38 ### ==========================================================================
39 ### Section 2. High-level Configuration
40 ### ==========================================================================
41 #
42 # flag                --- Comp switch --- Description
43 # ----------------------------------------------------------------------------
44 #
45 # debug = yes/no      --- -DNDEBUG         --- Enable/Disable debug mode
46 # optimize = yes/no   --- (-O3/-fast etc.) --- Enable/Disable optimizations
47 # arch = (name)       --- (-arch)          --- Target architecture
48 # os = (name)         ---                  --- Target operating system
49 # bits = 64/32        --- -DIS_64BIT       --- 64-/32-bit operating system
50 # prefetch = yes/no   --- -DUSE_PREFETCH   --- Use prefetch x86 asm-instruction
51 # bsfq = yes/no       --- -DUSE_BSFQ       --- Use bsfq x86_64 asm-instruction (only
52 #                                              with GCC and ICC 64-bit)
53 # popcnt = yes/no     --- -DUSE_POPCNT     --- Use popcnt x86_64 asm-instruction
54 #
55 # Note that Makefile is space sensitive, so when adding new architectures
56 # or modifying existing flags, you have to make sure there are no extra spaces
57 # at the end of the line for flag values.
58
59 ### 2.1. General
60 debug = no
61 optimize = yes
62
63 ### 2.2 Architecture specific
64
65 # General-section
66 ifeq ($(ARCH),general-64)
67         arch = any
68         os = any
69         bits = 64
70         prefetch = no
71         bsfq = no
72         popcnt = no
73 endif
74
75 ifeq ($(ARCH),general-32)
76         arch = any
77         os = any
78         bits = 32
79         prefetch = no
80         bsfq = no
81         popcnt = no
82 endif
83
84 # x86-section
85 ifeq ($(ARCH),x86-64)
86         arch = x86_64
87         os = any
88         bits = 64
89         prefetch = yes
90         bsfq = yes
91         popcnt = no
92 endif
93
94 ifeq ($(ARCH),x86-64-modern)
95         arch = x86_64
96         os = any
97         bits = 64
98         prefetch = yes
99         bsfq = yes
100         popcnt = yes
101 endif
102
103 ifeq ($(ARCH),x86-32)
104         arch = i386
105         os = any
106         bits = 32
107         prefetch = yes
108         bsfq = no
109         popcnt = no
110 endif
111
112 ifeq ($(ARCH),x86-32-old)
113         arch = i386
114         os = any
115         bits = 32
116         prefetch = no
117         bsfq = no
118         popcnt = no
119 endif
120
121 # osx-section
122 ifeq ($(ARCH),osx-ppc-64)
123         arch = ppc64
124         os = osx
125         bits = 64
126         prefetch = no
127         bsfq = no
128         popcnt = no
129 endif
130
131 ifeq ($(ARCH),osx-ppc-32)
132         arch = ppc
133         os = osx
134         bits = 32
135         prefetch = no
136         bsfq = no
137         popcnt = no
138 endif
139
140 ifeq ($(ARCH),osx-x86-64)
141         arch = x86_64
142         os = osx
143         bits = 64
144         prefetch = yes
145         bsfq = yes
146         popcnt = no
147 endif
148
149 ifeq ($(ARCH),osx-x86-32)
150         arch = i386
151         os = osx
152         bits = 32
153         prefetch = yes
154         bsfq = no
155         popcnt = no
156 endif
157
158
159 ### ==========================================================================
160 ### Section 3. Low-level configuration
161 ### ==========================================================================
162
163 ### 3.1 Selecting compiler (default = gcc)
164 ifeq ($(COMP),)
165         COMP=gcc
166 endif
167
168 ifeq ($(COMP),mingw)
169         comp=mingw
170         CXX=g++
171         profile_prepare = gcc-profile-prepare
172         profile_make = gcc-profile-make
173         profile_use = gcc-profile-use
174         profile_clean = gcc-profile-clean
175 endif
176
177 ifeq ($(COMP),gcc)
178         comp=gcc
179         CXX=g++
180         profile_prepare = gcc-profile-prepare
181         profile_make = gcc-profile-make
182         profile_use = gcc-profile-use
183         profile_clean = gcc-profile-clean
184 endif
185
186 ifeq ($(COMP),icc)
187         comp=icc
188         CXX=icpc
189         profile_prepare = icc-profile-prepare
190         profile_make = icc-profile-make
191         profile_use = icc-profile-use
192         profile_clean = icc-profile-clean
193 endif
194
195 ### 3.2 General compiler settings
196 CXXFLAGS = -g -Wall -Wcast-qual -fno-exceptions -fno-rtti $(EXTRACXXFLAGS)
197
198 ifeq ($(comp),gcc)
199         CXXFLAGS += -ansi -pedantic -Wno-long-long -Wextra -Wshadow
200 endif
201
202 ifeq ($(comp),mingw)
203         CXXFLAGS += -Wextra -Wshadow
204 endif
205
206 ifeq ($(comp),icc)
207         CXXFLAGS += -wd383,981,1418,1419,10187,10188,11505,11503 -Wcheck -Wabi -Wdeprecated -strict-ansi
208 endif
209
210 ifeq ($(os),osx)
211         CXXFLAGS += -arch $(arch)
212 endif
213
214 ### 3.3 General linker settings
215 LDFLAGS = $(EXTRALDFLAGS)
216
217 ### On mingw use Windows threads, otherwise POSIX
218 ifneq ($(comp),mingw)
219         LDFLAGS += -lpthread
220 endif
221
222 ifeq ($(os),osx)
223         LDFLAGS += -arch $(arch)
224 endif
225
226 ### 3.4 Debugging
227 ifeq ($(debug),no)
228         CXXFLAGS += -DNDEBUG
229 endif
230
231 ### 3.5 Optimization
232 ifeq ($(optimize),yes)
233
234         ifeq ($(comp),gcc)
235                 CXXFLAGS += -O3
236
237                 ifeq ($(os),osx)
238                         ifeq ($(arch),i386)
239                                 CXXFLAGS += -mdynamic-no-pic
240                         endif
241                         ifeq ($(arch),x86_64)
242                                 CXXFLAGS += -mdynamic-no-pic
243                         endif
244                 endif
245         endif
246
247         ifeq ($(comp),mingw)
248                 CXXFLAGS += -O3
249         endif
250
251         ifeq ($(comp),icc)
252                 ifeq ($(os),osx)
253                         CXXFLAGS += -fast -mdynamic-no-pic
254                 else
255                         CXXFLAGS += -O3
256                 endif
257         endif
258 endif
259
260 ### 3.6. Bits
261 ifeq ($(bits),64)
262         CXXFLAGS += -DIS_64BIT
263 endif
264
265 ### 3.7 prefetch
266 ifeq ($(prefetch),yes)
267         CXXFLAGS += -msse
268         DEPENDFLAGS += -msse
269 else
270         CXXFLAGS += -DNO_PREFETCH
271 endif
272
273 ### 3.8 bsfq
274 ifeq ($(bsfq),yes)
275         CXXFLAGS += -DUSE_BSFQ
276 endif
277
278 ### 3.9 popcnt
279 ifeq ($(popcnt),yes)
280         CXXFLAGS += -msse3 -DUSE_POPCNT
281 endif
282
283 ### 3.10 Link Time Optimization, it works since gcc 4.5 but not on mingw.
284 ### This is a mix of compile and link time options because the lto link phase
285 ### needs access to the optimization flags.
286 ifeq ($(comp),gcc)
287         GCC_MAJOR := `$(CXX) -dumpversion | cut -f1 -d.`
288         GCC_MINOR := `$(CXX) -dumpversion | cut -f2 -d.`
289         ifeq (1,$(shell expr \( $(GCC_MAJOR) \> 4 \) \| \( $(GCC_MAJOR) \= 4 \& $(GCC_MINOR) \>= 5 \)))
290                 CXXFLAGS += -flto
291                 LDFLAGS += $(CXXFLAGS)
292         endif
293 endif
294
295 ### ==========================================================================
296 ### Section 4. Public targets
297 ### ==========================================================================
298
299 help:
300         @echo ""
301         @echo "To compile stockfish, type: "
302         @echo ""
303         @echo "make target ARCH=arch [COMP=comp]"
304         @echo ""
305         @echo "Supported targets:"
306         @echo ""
307         @echo "build                > Build unoptimized version"
308         @echo "profile-build        > Build PGO-optimized version"
309         @echo "strip                > Strip executable"
310         @echo "install              > Install executable"
311         @echo "clean                > Clean up"
312         @echo "testrun              > Make sample run"
313         @echo ""
314         @echo "Supported archs:"
315         @echo ""
316         @echo "x86-64               > x86 64-bit"
317         @echo "x86-64-modern        > x86 64-bit with runtime support for popcnt instruction"
318         @echo "x86-32               > x86 32-bit excluding old hardware without SSE-support"
319         @echo "x86-32-old           > x86 32-bit including also very old hardware"
320         @echo "osx-ppc-64           > PPC-Mac OS X 64 bit"
321         @echo "osx-ppc-32           > PPC-Mac OS X 32 bit"
322         @echo "osx-x86-64           > x86-Mac OS X 64 bit"
323         @echo "osx-x86-32           > x86-Mac OS X 32 bit"
324         @echo "general-64           > unspecified 64-bit"
325         @echo "general-32           > unspecified 32-bit"
326         @echo ""
327         @echo "Supported comps:"
328         @echo ""
329         @echo "gcc                  > Gnu compiler (default)"
330         @echo "icc                  > Intel compiler"
331         @echo "mingw                > Gnu compiler with MinGW under Windows"
332         @echo ""
333         @echo "Non-standard targets:"
334         @echo ""
335         @echo "make hpux           >  Compile for HP-UX. Compiler = aCC"
336         @echo ""
337         @echo "Examples. If you don't know what to do, you likely want to run: "
338         @echo ""
339         @echo "make profile-build ARCH=x86-64    (This is for 64-bit systems)"
340         @echo "make profile-build ARCH=x86-32    (This is for 32-bit systems)"
341         @echo ""
342
343 build:
344         $(MAKE) ARCH=$(ARCH) COMP=$(COMP) config-sanity
345         $(MAKE) ARCH=$(ARCH) COMP=$(COMP) all
346
347 profile-build:
348         $(MAKE) ARCH=$(ARCH) COMP=$(COMP) config-sanity
349         @echo ""
350         @echo "Step 0/4. Preparing for profile build."
351         $(MAKE) ARCH=$(ARCH) COMP=$(COMP) $(profile_prepare)
352         @echo ""
353         @echo "Step 1/4. Building executable for benchmark ..."
354         @touch *.cpp *.h
355         $(MAKE) ARCH=$(ARCH) COMP=$(COMP) $(profile_make)
356         @echo ""
357         @echo "Step 2/4. Running benchmark for pgo-build ..."
358         @$(PGOBENCH) > /dev/null
359         @echo ""
360         @echo "Step 3/4. Building final executable ..."
361         @touch *.cpp
362         $(MAKE) ARCH=$(ARCH) COMP=$(COMP) $(profile_use)
363         @echo ""
364         @echo "Step 4/4. Deleting profile data ..."
365         $(MAKE) ARCH=$(ARCH) COMP=$(COMP) $(profile_clean)
366
367 strip:
368         strip $(EXE)
369
370 install:
371         -mkdir -p -m 755 $(BINDIR)
372         -cp $(EXE) $(BINDIR)
373         -strip $(BINDIR)/$(EXE)
374
375 clean:
376         $(RM) $(EXE) $(EXE).exe *.o .depend *~ core bench.txt *.gcda
377
378 testrun:
379         @$(PGOBENCH)
380
381 default:
382         help
383
384 ### ==========================================================================
385 ### Section 5. Private targets
386 ### ==========================================================================
387
388 all: $(EXE) .depend
389
390 config-sanity:
391         @echo ""
392         @echo "Config:"
393         @echo "debug: '$(debug)'"
394         @echo "optimize: '$(optimize)'"
395         @echo "arch: '$(arch)'"
396         @echo "os: '$(os)'"
397         @echo "bits: '$(bits)'"
398         @echo "prefetch: '$(prefetch)'"
399         @echo "bsfq: '$(bsfq)'"
400         @echo "popcnt: '$(popcnt)'"
401         @echo ""
402         @echo "Flags:"
403         @echo "CXX: $(CXX)"
404         @echo "CXXFLAGS: $(CXXFLAGS)"
405         @echo "LDFLAGS: $(LDFLAGS)"
406         @echo ""
407         @echo "Testing config sanity. If this fails, try 'make help' ..."
408         @echo ""
409         @test "$(debug)" = "yes" || test "$(debug)" = "no"
410         @test "$(optimize)" = "yes" || test "$(optimize)" = "no"
411         @test "$(arch)" = "any" || test "$(arch)" = "x86_64" || test "$(arch)" = "i386" || \
412          test "$(arch)" = "ppc64" || test "$(arch)" = "ppc"
413         @test "$(os)" = "any" || test "$(os)" = "osx"
414         @test "$(bits)" = "32" || test "$(bits)" = "64"
415         @test "$(prefetch)" = "yes" || test "$(prefetch)" = "no"
416         @test "$(bsfq)" = "yes" || test "$(bsfq)" = "no"
417         @test "$(popcnt)" = "yes" || test "$(popcnt)" = "no"
418         @test "$(comp)" = "gcc" || test "$(comp)" = "icc" || test "$(comp)" = "mingw"
419
420 $(EXE): $(OBJS)
421         $(CXX) -o $@ $(OBJS) $(LDFLAGS)
422
423 gcc-profile-prepare:
424         $(MAKE) ARCH=$(ARCH) COMP=$(COMP) gcc-profile-clean
425
426 gcc-profile-make:
427         $(MAKE) ARCH=$(ARCH) COMP=$(COMP) \
428         EXTRACXXFLAGS='-fprofile-generate' \
429         EXTRALDFLAGS='-lgcov' \
430         all
431
432 gcc-profile-use:
433         $(MAKE) ARCH=$(ARCH) COMP=$(COMP) \
434         EXTRACXXFLAGS='-fprofile-use' \
435         EXTRALDFLAGS='-lgcov' \
436         all
437
438 gcc-profile-clean:
439         @rm -rf *.gcda *.gcno bench.txt
440
441 icc-profile-prepare:
442         $(MAKE) ARCH=$(ARCH) COMP=$(COMP) icc-profile-clean
443         @mkdir profdir
444
445 icc-profile-make:
446         $(MAKE) ARCH=$(ARCH) COMP=$(COMP) \
447         EXTRACXXFLAGS='-prof-gen=srcpos -prof_dir ./profdir' \
448         all
449
450 icc-profile-use:
451         $(MAKE) ARCH=$(ARCH) COMP=$(COMP) \
452         EXTRACXXFLAGS='-prof_use -prof_dir ./profdir' \
453         all
454
455 icc-profile-clean:
456         @rm -rf profdir bench.txt
457
458 .depend:
459         -@$(CXX) $(DEPENDFLAGS) -MM $(OBJS:.o=.cpp) > $@ 2> /dev/null
460
461 -include .depend
462
463
464 ### ==========================================================================
465 ### Section 6. Non-standard targets
466 ### ==========================================================================
467
468 hpux:
469         $(MAKE) \
470         CXX='/opt/aCC/bin/aCC -AA +hpxstd98 -mt +O3 -DNDEBUG -DNO_PREFETCH' \
471         CXXFLAGS="" \
472         LDFLAGS="" \
473         all
474